Changeset 90e6025 in mainline for uspace/srv
- Timestamp:
- 2007-09-28T16:48:16Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e0476ad
- Parents:
- 12a56fa
- Location:
- uspace/srv
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devmap/devmap.c
r12a56fa r90e6025 36 36 */ 37 37 38 #include <ipc/ipc.h>39 38 #include <ipc/services.h> 40 39 #include <ipc/ns.h> -
uspace/srv/devmap/devmap.h
r12a56fa r90e6025 34 34 #define DEVMAP_DEVMAP_H_ 35 35 36 #include <ipc/ipc.h> 37 36 38 typedef enum { 37 DEVMAP_REGISTER = FIRST_USER_METHOD,39 DEVMAP_REGISTER = IPC_FIRST_USER_METHOD, 38 40 DEVMAP_UNREGISTER, 39 41 DEVMAP_CONNECT_TO_DEVICE -
uspace/srv/vfs/vfs.h
r12a56fa r90e6025 38 38 #include <atomic.h> 39 39 #include <sys/types.h> 40 #include <bool.h> 40 41 41 42 #define dprintf(...) printf(__VA_ARGS__) 42 43 43 #define VFS_FIRST FIRST_USER_METHOD44 #define VFS_FIRST IPC_FIRST_USER_METHOD 44 45 45 46 #define IPC_METHOD_TO_VFS_OP(m) ((m) - VFS_FIRST)
Note:
See TracChangeset
for help on using the changeset viewer.