Reset shmem_exit_inprogress after shmem_exit()

In ad9a274778, shmem_exit_inprogress was
introduced.  But we need to reset it after shmem_exit(), because unlike
the similar proc_exit(), shmem_exit() can also be called for cleanup
when the process will not exit.

Reported-by: Andrew Gierth <andrew@tao11.riddles.org.uk>
This commit is contained in:
Peter Eisentraut 2018-07-12 20:22:17 +02:00
parent 632b4ae92d
commit 5e6e2c8773
1 changed files with 2 additions and 0 deletions

View File

@ -272,6 +272,8 @@ shmem_exit(int code)
on_shmem_exit_list[on_shmem_exit_index].function(code,
on_shmem_exit_list[on_shmem_exit_index].arg);
on_shmem_exit_index = 0;
shmem_exit_inprogress = false;
}
/* ----------------------------------------------------------------