Re: [PATCH] Use right lock release in __register_exitproc()
Jeff Johnston <[email protected]>
| Newsgroups | gmane.comp.lib.newlib |
|---|---|
| Message-ID | <CAOox84sz56g_wAGB2u6YzrE=uqzFNAOwGHusCWRZvY-EK5KmPQ@mail.gmail.com> |
Looks good, please go ahead. -- Jeff J. On Tue, May 17, 2022 at 1:04 PM Sebastian Huber < [email protected]> wrote: > --- > newlib/libc/stdlib/__atexit.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/newlib/libc/stdlib/__atexit.c b/newlib/libc/stdlib/__atexit.c > index 04bdf194e..e59f04c2e 100644 > --- a/newlib/libc/stdlib/__atexit.c > +++ b/newlib/libc/stdlib/__atexit.c > @@ -128,7 +128,7 @@ __register_exitproc (int type, > if (args == NULL) > { > #ifndef __SINGLE_THREAD__ > - __lock_release(__atexit_recursive_mutex); > + __lock_release_recursive(__atexit_recursive_mutex); > #endif > return -1; > } > -- > 2.35.3 > >