Ignore:
Timestamp:
Feb 19, 2009 3:48:11 PM (15 years ago)
Author:
gah
Message:

vizservers/pymolproxy/pymolproxy.c

Added atomscale and projection commands.
Created buffered input layers between client-proxy, server-proxy.
Also created non-blocking buffered image layer between proxy-client.
This is a major update to the proxy. It should be more efficient.

vizservers/nanoscale/server.c

Removed broadcast feature. It's not being used. The server never
redirects the client to another host.

vizservers/start_viz.sh.in

Fixed sed script to replace the last octet of IP address with
broadcast 255.

vizservers/configure.in

Added test of Cg libraries and includes. Gentoo has moved them
from /usr/lib to /opt/nvidia-cg-toolkit/lib.

vizservers/nanovis/Makefile.in

Added locations of Cg libraries and headers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanoscale/server.c

    r1235 r1278  
    138138           children, memory_in_use, load);
    139139
     140#ifdef notdef
    140141    broadcast_load();
     142#endif
    141143}
    142144
     
    395397    // We're ready to go.  Before going into the main loop,
    396398    // broadcast a load announcement to other machines.
     399#ifdef notdef
    397400    broadcast_load();
    398 
     401#endif
    399402    int maxfd = send_fd;
    400403    FD_ZERO(&saved_rfds);
     
    410413    FD_SET(send_fd, &saved_rfds);
    411414
    412     if (debug_flag == 0) {
     415    if (!debug_flag) {
    413416        if ( daemon(0,0) != 0 ) {
    414417            perror("daemon");
     
    594597                    for(n = 0; n < MAX_SERVICES; n++) {
    595598                        if (FD_ISSET(i, &service_rfds[n])) {
    596                          
    597                             // disassociate
    598                             if ( daemon(0,1) == 0 ) {
     599                            int status = 0;
     600
     601                            if (!debug_flag) {
     602                                // disassociate
     603                                status = daemon(0,1);
     604                            }
     605                           
     606                            if (status == 0) {
    599607                                int fd;
    600608
Note: See TracChangeset for help on using the changeset viewer.