Changeset 2437 for trunk


Ignore:
Timestamp:
Aug 28, 2011, 7:00:30 PM (13 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/pymolproxy/pymolproxy.c

    r2436 r2437  
    21182118    int flags;
    21192119
     2120    flags = fcntl(proxyPtr->cin, F_GETFL);
     2121    fcntl(proxyPtr->cin, F_SETFL, flags|O_NONBLOCK);
     2122
    21202123    flags = fcntl(proxyPtr->serr, F_GETFL);
    2121     fcntl(proxyPtr->cin, F_SETFL, flags|O_NONBLOCK);
     2124    fcntl(proxyPtr->serr, F_SETFL, flags|O_NONBLOCK);
    21222125
    21232126    flags = fcntl(proxyPtr->sout, F_GETFL);
    2124     fcntl(proxyPtr->cin, F_SETFL, flags|O_NONBLOCK);
     2127    fcntl(proxyPtr->sout, F_SETFL, flags|O_NONBLOCK);
    21252128
    21262129    flags = fcntl(proxyPtr->cout, F_GETFL);
    2127     fcntl(proxyPtr->cin, F_SETFL, flags|O_NONBLOCK);
     2130    fcntl(proxyPtr->cout, F_SETFL, flags|O_NONBLOCK);
    21282131
    21292132    /* Read file descriptors. */
Note: See TracChangeset for help on using the changeset viewer.