You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flang/docs/Intrinsics.md
+10-7Lines changed: 10 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -893,14 +893,17 @@ used in constant expressions have currently no folding support at all.
893
893
##### `CMDSTAT`:
894
894
895
895
- Synchronous execution:
896
-
- -2: No error condition occurs, but `WAIT` is present with the value `false`, and the processor does not support asynchronous execution.
897
-
- -1: The processor does not support command line execution.
896
+
- -2: `ASYNC_NO_SUPPORT_ERR` - No error condition occurs, but `WAIT` is present with the value `false`, and the processor does not support asynchronous execution.
897
+
- -1: `NO_SUPPORT_ERR` - The processor does not support command line execution. (system returns -1 with errno `ENOENT`)
898
+
- 0: `CMD_EXECUTED` - Command executed with no error.
898
899
-\+ (positive value): An error condition occurs.
899
-
- 1: Fork Error (occurs only on POSIX-compatible systems).
900
-
- 2: Execution Error (command exits with status -1).
901
-
- 3: Invalid Command Error (determined by the exit code depending on the system).
902
-
- 4: Signal error (either stopped or killed by signal, occurs only on POSIX-compatible systems).
903
-
- 0: Otherwise.
900
+
- 1: `FORK_ERR` - Fork Error (occurs only on POSIX-compatible systems).
901
+
- 2: `EXECL_ERR` - Execution Error (system returns -1 with other errno).
0 commit comments