Changeset 21153 for trunk/Ohana/src/opihi/include/pcontrol.h
- Timestamp:
- Jan 22, 2009, 10:43:26 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/include/pcontrol.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/include/pcontrol.h
r20047 r21153 154 154 // # define ABORT(STRING) { gprint (GP_ERR, "programming error: %s\n", STRING); raise (SIGINT); exit (2); } 155 155 156 void InitPcontrol ( );157 void FreePcontrol ( );156 void InitPcontrol (void); 157 void FreePcontrol (void); 158 158 159 159 /*** StackOps.c ***/ 160 Stack *InitStack ( );160 Stack *InitStack (void); 161 161 void FreeStack (Stack *stack); 162 162 int PushStack (Stack *stack, int where, void *object, int id, char *name); … … 173 173 174 174 /*** CheckSystem.c ***/ 175 int CheckSystem ( );175 int CheckSystem (void); 176 176 void *CheckSystem_Threaded (void *data); 177 177 int CheckBusyJobs (float delay); … … 214 214 215 215 /*** misc files ***/ 216 int VerboseMode ( ); // in verbose.c216 int VerboseMode (void); // in verbose.c 217 217 void gotsignal (int signum); // in pcontrol.c 218 218 219 219 /*** IDops.c ***/ 220 void InitIDs ( );221 IDtype NextJobID ( );222 IDtype NextHostID ( );220 void InitIDs (void); 221 IDtype NextJobID (void); 222 IDtype NextHostID (void); 223 223 void PrintID (gpDest dest, IDtype ID); 224 224 IDtype GetID (char *IDword); 225 225 226 226 /*** CheckPoint.c ***/ 227 int SetCheckPoint ( );228 int ClearCheckPoint ( );229 int TestCheckPoint ( );227 int SetCheckPoint (void); 228 int ClearCheckPoint (void); 229 int TestCheckPoint (void); 230 230 231 231 /*** HostOps.c ***/ 232 void InitHostStacks ( );233 void FreeHostStacks ( );232 void InitHostStacks (void); 233 void FreeHostStacks (void); 234 234 Stack *GetHostStack (int StackID); 235 235 char *GetHostStackName (int StackID); … … 246 246 void DownHost (Host *host); 247 247 void OffHost (Host *host); 248 int DownHosts ( );248 int DownHosts (void); 249 249 int StopHost (Host *host); 250 250 int StopHostResponse (Host *host); … … 254 254 int InitJobOutput (JobOutput *output); 255 255 int ResetJobOutput (JobOutput *output); 256 void InitJobStacks ( );257 void FreeJobStacks ( );256 void InitJobStacks (void); 257 void FreeJobStacks (void); 258 258 Stack *GetJobStack (int StackID); 259 259 char *GetJobStackName (int StackID);
Note:
See TracChangeset
for help on using the changeset viewer.
