Al Chu
Al Chu
libsubprocess handles SIGSTOP and can return a STOPPED state to the user, but it doesn't return RUNNING if a SIGCONT is sent. I would think this should be handled to...
I just noticed this was a potential output in `flux resource list`, should be available in job-list too?
Partly from a hallway conversation I had with @morrone. I added a `whatsup` option called `--monitor` a long time ago. The idea is you run ``` > whatsup --monitor ```...
Recently ran a typo checker through a project in which we use parsedatetime. Went ahead and ran it through the parsedatetime repo and found a couple more. - - -...
Per discussion in #5919, some notes - built on top of my cleanups in #5974 - should the use of this flag in job-exec be a different PR? - in...
Splicing out this collection of minor things from my bigger PR
It appears that subprocess flags cannot be passed to remote sub processes. Originally only the flags `FLUX_SUBPROCESS_FLAGS_STDIO_FALLTHROUGH` and `FLUX_SUBPROCESS_FLAGS_SETPGRP` were supported. The former flag has no purpose with remote subprocesses...
Per discussion in #5956, it may be useful at times to not cleanup failed systemd units for post analysis later. The way this was handled in the old `libsdprocess` was...
The primary `bulk-exec` implementation is largely handled in a set of files and functions called `exec` and its config in `exec_config` while the heavy lifting is done in `bulk-exec.c`. It...
Problem: Remote subprocesses default to always set the SETPGRP flag. This leads to inconsistent behavior where local subprocesses don't have the flag set but remote ones do. We could remove...