diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2017-11-22 21:30:24 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2017-11-22 21:31:41 +0100 |
commit | 71b3a63b641716165f664cf112be0673a122cea0 (patch) | |
tree | e8350273c4889d1067e2eb4824dfaa0358604a6d /libpthread/nptl/pthreadP.h | |
parent | 2fcffe26e815b7125a357c83b59617ab93c16b41 (diff) |
librt: fix broken posix_spawn
Fix iteration over signals, synced with GNU C library code and
pending patches. Issues found when running dhcpcd with hook
scripts. (exit status 127)
Reported-By: kapeka <kapeka@bering-uclibc.de>
Diffstat (limited to 'libpthread/nptl/pthreadP.h')
-rw-r--r-- | libpthread/nptl/pthreadP.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/nptl/pthreadP.h b/libpthread/nptl/pthreadP.h index 4707f6548..13205512a 100644 --- a/libpthread/nptl/pthreadP.h +++ b/libpthread/nptl/pthreadP.h @@ -1,5 +1,4 @@ /* Copyright (C) 2002-2007, 2009 Free Software Foundation, Inc. - This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. The GNU C Library is free software; you can redistribute it and/or @@ -31,7 +30,7 @@ #include <atomic.h> #include <bits/kernel-features.h> #include <errno.h> -#include <nptl-signals.h> +#include <internal-signals.h> /* Atomic operations on TLS memory. */ |