Changeset 8184
- Timestamp:
- Aug 4, 2006, 4:06:23 PM (20 years ago)
- Location:
- trunk/Ohana/src/opihi/pantasks
- Files:
-
- 3 edited
-
ControllerOps.c (modified) (1 diff)
-
controller_host.c (modified) (1 diff)
-
controller_pulse.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/pantasks/ControllerOps.c
r7917 r8184 165 165 if (job[0].task[0].host == NULL) return (FALSE); 166 166 167 StartController (); // XXX check for success 167 if (!StartController ()) { 168 gprint (GP_ERR, "failure to start pcontrol\n"); 169 return (FALSE); 170 } 168 171 169 172 /** construct the line to be sent to the controller **/ -
trunk/Ohana/src/opihi/pantasks/controller_host.c
r7917 r8184 13 13 14 14 /* start controller connection (if needed) */ 15 StartController (); 15 if (!StartController ()) { 16 gprint (GP_ERR, "failure to start pcontrol\n"); 17 return (FALSE); 18 } 16 19 17 20 sprintf (command, "host %s %s", argv[1], argv[2]); -
trunk/Ohana/src/opihi/pantasks/controller_pulse.c
r7917 r8184 13 13 14 14 /* start controller connection (if needed) */ 15 StartController (); 15 if (!StartController ()) { 16 gprint (GP_ERR, "failure to start pcontrol\n"); 17 return (FALSE); 18 } 16 19 17 20 sprintf (command, "pulse %d", atoi(argv[1]));
Note:
See TracChangeset
for help on using the changeset viewer.
