Difference between revisions of "Process exit codes 192 - 204"

From BOINC Wiki
Jump to: navigation, search
(Adding FAQ 382)
 
(adding template)
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
 
NOTE: Unix passes only 8 bits of exit code, and Unix uses roughly 1-137, so BOINC errors start at 192.
 
NOTE: Unix passes only 8 bits of exit code, and Unix uses roughly 1-137, so BOINC errors start at 192.
  
EXIT_STATEFILE_WRITE 192
 
  
The client will exit if it cannot write to the client_state.xml file.  
+
'''EXIT_STATEFILE_WRITE 192''' - The client will exit if it cannot write to the client_state.xml file.  
 
Make sure you have permission to write to the BOINC Data directory.  
 
Make sure you have permission to write to the BOINC Data directory.  
  
EXIT_SIGNAL 193
+
'''EXIT_SIGNAL 193''' - The client, Manager and/or application will exit when getting the exit signal.
  
The client, Manager and/or application will exit when getting the exit signal.  
+
'''EXIT_ABORTED_BY_CLIENT 194''' - Task was aborted by the BOINC client.  
  
EXIT_ABORTED_BY_CLIENT 194
+
'''EXIT_CHILD_FAILED 195''' - The science application running the task failed for unknown reasons.
  
Task was aborted by the BOINC client.  
+
'''EXIT_DISK_LIMIT_EXCEEDED 196''' - The amount of disk space that the task could use was more than the limit set to the task.
  
EXIT_CHILD_FAILED 195
+
'''EXIT_TIME_LIMIT_EXCEEDED 197''' - The amount of time that the task can run was estimated to be far greater than then time limit set to the task.
  
The science application running the task failed for unknown reasons.  
+
'''EXIT_MEM_LIMIT_EXCEEDED 198''' - The amount of memory that the task could use was greater than the limit set to the task.  
  
EXIT_DISK_LIMIT_EXCEEDED 196
+
'''EXIT_CLIENT_EXITING 199''' - The task was ended when the client was exited.
  
The amount of disk space that the task could use was more than the limit set to the task.
+
'''EXIT_UNSTARTED_LATE 200''' - Task was aborted due to it having not started and already past the deadline.  
  
EXIT_TIME_LIMIT_EXCEEDED 197
+
'''EXIT_MISSING_COPROC 201''' - A coprocessor that was detected earlier went missing. Work for it is being aborted.
  
The amount of time that the task can run was estimated to be far greater than then time limit set to the task.  
+
'''EXIT_ABORTED_BY_PROJECT 202''' - Tasks on the computer were aborted by the project.  
  
EXIT_MEM_LIMIT_EXCEEDED 198
+
'''EXIT_ABORTED_VIA_GUI 203''' - Applications exit with this code after you told them to abort.
  
The amount of memory that the task could use was greater than the limit set to the task.  
+
'''EXIT_UNKNOWN 204''' - Unknown exit.  
  
EXIT_CLIENT_EXITING 199
 
  
The task was ended when the client was exited.
+
{| class="wikitable" style="text-align: center;"
 
+
! Original writer
EXIT_UNSTARTED_LATE 200
+
! Original FAQ
 
+
! Date
Task was aborted due to it having not started and already past the deadline.
+
|-
 
 
EXIT_MISSING_COPROC 201
 
 
 
A coprocessor that was detected earlier went missing. Work for it is being aborted.
 
 
 
EXIT_ABORTED_BY_PROJECT 202
 
 
 
Tasks on the computer were aborted by the project.
 
 
 
EXIT_ABORTED_VIA_GUI 203
 
 
 
Applications exit with this code after you told them to abort.
 
 
 
EXIT_UNKNOWN 204
 
 
 
Unknown exit.
 
 
  | Jorden
 
  | Jorden
  | 3
+
  | [http://boincfaq.mundayweb.com/index.php?language=1&view=382 382]
| 1
+
  | 18-06-2008
  | 00:00:00
+
  |-
| 0000-00-00
+
  |}
| 166764
 
| 1
 
  | 382
 
| 2008-06-18 16:40:23
 
  | 2012-07-11 10:41:18
 

Latest revision as of 14:15, 29 August 2016

Yes, positive error codes, to make things interesting. :-)

The following are process exit codes (not function return values). They are used by the client and applications. NOTE: Unix passes only 8 bits of exit code, and Unix uses roughly 1-137, so BOINC errors start at 192.


EXIT_STATEFILE_WRITE 192 - The client will exit if it cannot write to the client_state.xml file. Make sure you have permission to write to the BOINC Data directory.

EXIT_SIGNAL 193 - The client, Manager and/or application will exit when getting the exit signal.

EXIT_ABORTED_BY_CLIENT 194 - Task was aborted by the BOINC client.

EXIT_CHILD_FAILED 195 - The science application running the task failed for unknown reasons.

EXIT_DISK_LIMIT_EXCEEDED 196 - The amount of disk space that the task could use was more than the limit set to the task.

EXIT_TIME_LIMIT_EXCEEDED 197 - The amount of time that the task can run was estimated to be far greater than then time limit set to the task.

EXIT_MEM_LIMIT_EXCEEDED 198 - The amount of memory that the task could use was greater than the limit set to the task.

EXIT_CLIENT_EXITING 199 - The task was ended when the client was exited.

EXIT_UNSTARTED_LATE 200 - Task was aborted due to it having not started and already past the deadline.

EXIT_MISSING_COPROC 201 - A coprocessor that was detected earlier went missing. Work for it is being aborted.

EXIT_ABORTED_BY_PROJECT 202 - Tasks on the computer were aborted by the project.

EXIT_ABORTED_VIA_GUI 203 - Applications exit with this code after you told them to abort.

EXIT_UNKNOWN 204 - Unknown exit.


Original writer Original FAQ Date
Jorden 382 18-06-2008