Re: 5.3: job error caused by funsub + bind + loadable builtin
On 9/15/23 12:47 AM, Koichi Murase wrote: Bash Version: 5.3 Patch Level: 0 Release Status: devel Description: DEBUG warnings are produced for inconsistent numbers of dead jobs when a function substitution is used with the loadable builtin `sleep' inside `bind -x'. I guess this is related to the implementation of function substitutions newly introduced in 5.3, but I have not tried to pin down the problem in the codebase. Thanks, this is harmless. The child forked to run the async function call needed to reset the number of dead jobs in the jobs list after clearing it. -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRUc...@case.eduhttp://tiswww.cwru.edu/~chet/
Re: 5.3: job error caused by funsub + bind + loadable builtin
2023年10月2日(月) 23:15 Chet Ramey : > On 9/15/23 12:47 AM, Koichi Murase wrote: > > Description: > > > >DEBUG warnings are produced for inconsistent numbers of dead jobs > >when a function substitution is used with the loadable builtin > >`sleep' inside `bind -x'. I guess this is related to the > >implementation of function substitutions newly introduced in 5.3, > >but I have not tried to pin down the problem in the codebase. > > Thanks, this is harmless. The child forked to run the async function call > needed to reset the number of dead jobs in the jobs list after clearing it. Thank you for taking the time to look into that. -- Koichi