IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 12, 2007, 4:26:31 PM (20 years ago)
Author:
eugene
Message:

added module system; added panstarrs user features; panstarrs threaded

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/pantasks/pantasks_server.c

    r9473 r11084  
    1616int main (int argc, char **argv) {
    1717 
     18  pthread_t jobsThread;
     19  pthread_t tasksThread;
     20  pthread_t inputsThread;
    1821  pthread_t clientsThread;
    19   pthread_t tasksThread;
    20   // pthread_t jobsThread;
    21   pthread_t inputsThread;
    2222  pthread_t controllerThread;
    2323  int InitSocket, BindSocket;
     
    4747  pthread_create (&clientsThread,    NULL, &ListenClients,         NULL);
    4848  pthread_create (&tasksThread,      NULL, &CheckTasksThread,      NULL);
    49   // pthread_create (&jobsThread,       NULL, &CheckJobsThread,            NULL);
     49  pthread_create (&jobsThread,       NULL, &CheckJobsThread,       NULL);
    5050  pthread_create (&controllerThread, NULL, &CheckControllerThread, NULL);
    5151  pthread_create (&inputsThread,     NULL, &CheckInputsThread,     NULL);
Note: See TracChangeset for help on using the changeset viewer.