Changeset 1204 for trunk


Ignore:
Timestamp:
Oct 30, 2008, 7:52:44 AM (16 years ago)
Author:
gah
Message:

don't use

Location:
trunk/packages/vizservers
Files:
3 edited

Legend:

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

    r1189 r1204  
    524524                int newmemory = ntohl(msg);
    525525             
     526#ifdef notdef
    526527                // Find the best host to create a new child on.
    527528                int index = find_best_host();
     
    549550                    continue;
    550551                }
    551              
     552#endif
    552553                memory_in_use += newmemory;
    553554                load += 2*INITIAL_LOAD;
     555#ifdef notdef
    554556                broadcast_load();
     557#endif
    555558                printf("Accepted new job with memory %d\n", newmemory);
    556559                //printf("My load is now %f\n", load);
  • trunk/packages/vizservers/nanovis/Trace.cpp

    r1200 r1204  
    5252        return;
    5353    }
    54     fprintf(stderr, "FB Status: %s: %s", prefix, mesg);
     54    fprintf(stderr, "FB Status: %s: %s\n", prefix, mesg);
    5555}
    5656
     
    8181        return false;
    8282    }
    83     fprintf(stderr, "GL Status: %s: %s", prefix, mesg);
     83    fprintf(stderr, "GL Status: %s: %s\n", prefix, mesg);
    8484    return false;
    8585}
  • trunk/packages/vizservers/nanovis/nanovis.cpp

    r1203 r1204  
    637637    GLenum status;
    638638    if (!CheckFBO(&status)) {
    639         if (debug_flag) {
    640             PrintFBOStatus(status, "final_fbo");
    641         }
     639        PrintFBOStatus(status, "final_fbo");
     640        DoExit(3);
    642641    }
    643642
     
    715714    GLenum status;
    716715    if (!CheckFBO(&status)) {
    717         if (debug_flag) {
    718             PrintFBOStatus(status, "final_fbo");
    719         }
     716        PrintFBOStatus(status, "final_fbo");
     717        DoExit(3);
    720718    }
    721719
Note: See TracChangeset for help on using the changeset viewer.