Subversion Repositories HelenOS-historic

Rev

Rev 1343 | Rev 1360 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1343 Rev 1353
Line 29... Line 29...
29
/**
29
/**
30
 * @file    ns.c
30
 * @file    ns.c
31
 * @brief   Naming service for HelenOS IPC.
31
 * @brief   Naming service for HelenOS IPC.
32
 */
32
 */
33
 
33
 
-
 
34
#include <ipc/ipc.h>
34
#include <ipc.h>
35
#include <ipc/ns.h>
35
#include <stdio.h>
36
#include <stdio.h>
36
#include <unistd.h>
37
#include <unistd.h>
37
#include <stdlib.h>
38
#include <stdlib.h>
38
#include <ns.h>
-
 
39
#include <errno.h>
39
#include <errno.h>
40
#include <assert.h>
40
#include <assert.h>
41
#include <libadt/list.h>
41
#include <libadt/list.h>
42
#include <libadt/hash_table.h>
42
#include <libadt/hash_table.h>
43
 
43