| 1080 | } |
| 1081 | |
| 1082 | static void |
| 1083 | cleanup(void) |
| 1084 | { |
| 1085 | if (!lock_box(false, true)) |
| 1086 | msg("Nothing to do -- box did not exist\n"); |
| 1087 | else |
| 1088 | { |
| 1089 | msg("Deleting sandbox\n"); |
| 1090 | do_cleanup(); |
| 1091 | lock_remove(); |
| 1092 | } |
| 1093 | } |
| 1094 | |
| 1095 | static void |
| 1096 | setup_pipe(int *fds, int nonblocking) |
no test coverage detected
searching dependent graphs…