Changeset 630 for trunk/zoo-project
- Timestamp:
- Apr 11, 2015, 12:59:55 PM (10 years ago)
- Location:
- trunk/zoo-project/zoo-kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/service_internal.c
r627 r630 381 381 382 382 #ifndef __APPLE__ 383 /** 384 * arg for semctl system calls. 385 */ 383 386 union semun { 384 int val; 385 struct semid_ds *buf; 386 ushort *array; 387 int val; //!< value for SETVAL 388 struct semid_ds *buf; //!< buffer for IPC_STAT & IPC_SET 389 ushort *array; //!< array for GETALL & SETALL 387 390 }; 388 391 #endif -
trunk/zoo-project/zoo-kernel/service_internal_ruby.h
r581 r630 50 50 51 51 #define MAX_ARGS 3 52 /** 53 * The Ruby method pointer 54 */ 52 55 struct my_callback { 53 VALUE obj; 54 ID method_id; 55 int nargs; 56 VALUE args[MAX_ARGS]; 56 VALUE obj; //!< Object used to call a method 57 ID method_id; //!< The method to call 58 int nargs; //!< The arguments number 59 VALUE args[MAX_ARGS]; //!< The arguments values 57 60 }; 58 61 -
trunk/zoo-project/zoo-kernel/ulinet.h
r621 r630 66 66 #endif 67 67 68 /** 69 * Headers storage 70 * @see header_write_data 71 */ 68 72 struct MemoryStruct { 69 73 char *memory; //!< the memory space to store data
Note: See TracChangeset
for help on using the changeset viewer.