Ignore:
Timestamp:
Aug 29, 2016, 6:31:33 PM (9 years ago)
Author:
bird
Message:

kSubmit/kWorker: updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/w32/subproc/sub_proc.c

    r2843 r2844  
    206206 * @param   hEvent              The event semaphore to wait on.
    207207 * @param   clue                The clue to base.
     208 * @param   pPid                Where to return the pid that job.c expects.
    208209 */
    209210int
    210 process_kmk_register_submit(HANDLE hEvent, intptr_t clue)
     211process_kmk_register_submit(HANDLE hEvent, intptr_t clue, pid_t *pPid)
    211212{
    212213        if (proc_index < MAXIMUM_WAIT_OBJECTS) {
     
    217218
    218219                proc_array[proc_index++] = pSubProc;
     220                *pPid = (HANDLE)pSubProc;
    219221                return 0;
    220222        }
Note: See TracChangeset for help on using the changeset viewer.