[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference humane::scheduler

Title:SCHEDULER
Notice:Welcome to the Scheduler Conference on node HUMANEril
Moderator:RUMOR::FALEK
Created:Sat Mar 20 1993
Last Modified:Tue Jun 03 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:1240
Total number of notes:5017

1231.0. "NSCHED$ ERROR CODES" by CSC32::G_BURTT () Wed Mar 26 1997 11:31

In the Polycenter Scheduler Programming manual on page 1-7 it states that 

"All NSCHED$_ERROR  symbols are define and included in module NSCHED_MSG.OBJ,
which is included in NSCHED_SUBS.OLB."

I have a customer that wanted to know what the numerical equivalents are for all
the nsched$_error codes.  Is there an easy way to extract this information????
T.RTitleUserPersonal
Name
DateLines
1231.1one not very pretty way...RUMOR::FALEKex-TU58 KingThu Mar 27 1997 18:5018
      1. Extract the object module  (nsched_msg.obj)
        
          $ libr/extract=nsched_msg/out=nsched_msg nsched$:nsched_subs.olb
        
        2. Create any simple program in your favorite language,
        for example this one line C program   (myprog.c)
        
          main();
            
        3. Compile the program
        
          $ cc myprog
        
        4. Link with nsched_msg.obj, creating a link map
        
          $ link/map/full myprog,nsched_msg
        
        5. The symbols and values are all listed in myprog.map