Changeset 11 for trunk/minix
- Timestamp:
- May 18, 2011, 11:24:05 AM (14 years ago)
- Location:
- trunk/minix
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/minix/include/minix/callnr.h
r9 r11 1 #define NCALLS 9 5/* number of system calls allowed */1 #define NCALLS 96 /* number of system calls allowed */ 2 2 3 3 #define EXIT 1 … … 87 87 #define TRUNCATE 93 /* to FS */ 88 88 #define FTRUNCATE 94 /* to FS */ 89 #define FOO 95 /* to PM */ -
trunk/minix/servers/fs/table.c
r9 r11 113 113 do_truncate, /* 93 = truncate */ 114 114 do_ftruncate, /* 94 = truncate */ 115 no_sys, /* 95 = foo */ 115 116 }; 116 117 /* This should not fail with "array size is negative": */ -
trunk/minix/servers/pm/misc.c
r9 r11 428 428 } 429 429 430 PUBLIC int do_foo() 431 { 432 printf("Foo syscall called!\n"); 433 return OK; 434 } -
trunk/minix/servers/pm/proto.h
r9 r11 57 57 58 58 /* misc.c */ 59 _PROTOTYPE( int do_foo, (void) ); 59 60 _PROTOTYPE( int do_reboot, (void) ); 60 61 _PROTOTYPE( int do_procstat, (void) ); -
trunk/minix/servers/pm/table.c
r9 r11 111 111 no_sys, /* 93 = truncate */ 112 112 no_sys, /* 94 = ftruncate */ 113 do_foo, /* 95 = foo */ 113 114 }; 114 115 /* This should not fail with "array size is negative": */
Note:
See TracChangeset
for help on using the changeset viewer.