Changeset 2442 for trunk/packages


Ignore:
Timestamp:
Aug 29, 2011, 6:22:01 AM (13 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

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

    r2441 r2442  
    21102110    fcntl(proxyPtr->cin, F_SETFL, flags|O_NONBLOCK);
    21112111
     2112#ifdef notdef
    21122113    flags = fcntl(proxyPtr->sout, F_GETFL);
    21132114    fcntl(proxyPtr->sout, F_SETFL, flags|O_NONBLOCK);
     
    21152116    flags = fcntl(proxyPtr->cout, F_GETFL);
    21162117    fcntl(proxyPtr->cout, F_SETFL, flags|O_NONBLOCK);
     2118#endif
    21172119
    21182120    /* Read file descriptors. */
     
    21292131
    21302132    Tcl_Eval(proxyPtr->interp, "reset\n");
    2131     if (write(cout, "PyMol 1.0\n", 10) != 10) {
     2133    if (write(proxyPtr->cout, "PyMol 1.0\n", 10) != 10) {
    21322134        ERROR("short write of signature");
    21332135    }
Note: See TracChangeset for help on using the changeset viewer.