Changeset 416 for trunk/kernel/kern/cluster.h
- Timestamp:
- Jan 4, 2018, 10:05:47 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/cluster.h
r409 r416 197 197 * It registers the process descriptor extended pointer in the local processs manager 198 198 * pref_tbl[] array. This function is called by the process_make_fork() function, 199 * orby the process_init_create() function.200 ****************************************************************************************** 201 * @ process : [in] extended pointer on theprocess descriptor.199 * by the process_make_exec() function, and by the process_init_create() function. 200 ****************************************************************************************** 201 * @ process : pointer on process descriptor. 202 202 * @ pid : [out] allocated PID. 203 * @ return 0 if success / return EAGAIN if no PID slot available204 *****************************************************************************************/ 205 error_t cluster_pid_alloc( xptr_t process_xp,206 pid_t * pid );203 * @ return 0 if success / return -1 if no PID slot available. 204 *****************************************************************************************/ 205 error_t cluster_pid_alloc( struct process_s * process, 206 pid_t * pid ); 207 207 208 208 /******************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.