diff options
author | markm <markm@FreeBSD.org> | 2001-05-01 09:08:09 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-05-01 09:08:09 +0000 |
commit | 0c912b569813aa92e1547f6eec8104a8cecdac28 (patch) | |
tree | cc83d0e39a11c92f2f4ad7e40d269e2cef336ba5 /gnu | |
parent | 3bf4bc0b71400ba3fd6fd690ad18ebbfab8184a8 (diff) | |
download | FreeBSD-src-0c912b569813aa92e1547f6eec8104a8cecdac28.zip FreeBSD-src-0c912b569813aa92e1547f6eec8104a8cecdac28.tar.gz |
Compensate for dethreaded headers.
(I have no religion about how this was done. Follow-up commits welcome)
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c | 1 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c | 1 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/gdb/kvm-fbsd.c | 1 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/gdbserver/low-fbsd.c | 3 |
4 files changed, 6 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c b/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c index 3fff89e..78c8f96 100644 --- a/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c +++ b/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c @@ -21,6 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "defs.h" #include <sys/types.h> +#include <sys/lock.h> #include <sys/ptrace.h> #include <machine/reg.h> #include <machine/frame.h> diff --git a/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c b/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c index 9f2d69d..a81a229 100644 --- a/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c +++ b/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c @@ -27,6 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <paths.h> #include <sys/sysctl.h> #include <sys/param.h> +#include <sys/lock.h> #include <sys/time.h> #include <sys/proc.h> #include <sys/user.h> diff --git a/gnu/usr.bin/binutils/gdb/kvm-fbsd.c b/gnu/usr.bin/binutils/gdb/kvm-fbsd.c index 9f2d69d..a81a229 100644 --- a/gnu/usr.bin/binutils/gdb/kvm-fbsd.c +++ b/gnu/usr.bin/binutils/gdb/kvm-fbsd.c @@ -27,6 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <paths.h> #include <sys/sysctl.h> #include <sys/param.h> +#include <sys/lock.h> #include <sys/time.h> #include <sys/proc.h> #include <sys/user.h> diff --git a/gnu/usr.bin/binutils/gdbserver/low-fbsd.c b/gnu/usr.bin/binutils/gdbserver/low-fbsd.c index 090628e..604032a 100644 --- a/gnu/usr.bin/binutils/gdbserver/low-fbsd.c +++ b/gnu/usr.bin/binutils/gdbserver/low-fbsd.c @@ -17,6 +17,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* $FreeBSD$ */ + #include "defs.h" #include <sys/wait.h> #include "frame.h" @@ -24,6 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <sys/param.h> +#include <sys/lock.h> #include <dirent.h> #include <sys/user.h> #include <signal.h> |