diff options
| author | ad <ad@NetBSD.org> | 2007-02-09 21:55:00 +0000 |
|---|---|---|
| committer | ad <ad@NetBSD.org> | 2007-02-09 21:55:00 +0000 |
| commit | b07ec3fc388a5aeae51e8871aa89eefea3ce1e53 (patch) | |
| tree | c93d3b23a29f98ac0e26c9d43afb509219d0ea42 /sys/arch/evbmips/include | |
| parent | 5c1aad3ad0b9d2403784bd52128e8e8399e22254 (diff) | |
Merge newlock2 to head.
Diffstat (limited to 'sys/arch/evbmips/include')
| -rw-r--r-- | sys/arch/evbmips/include/Makefile | 6 | ||||
| -rw-r--r-- | sys/arch/evbmips/include/mutex.h | 3 | ||||
| -rw-r--r-- | sys/arch/evbmips/include/rwlock.h | 3 |
3 files changed, 9 insertions, 3 deletions
diff --git a/sys/arch/evbmips/include/Makefile b/sys/arch/evbmips/include/Makefile index ccb1bcd845d..a11e486fa54 100644 --- a/sys/arch/evbmips/include/Makefile +++ b/sys/arch/evbmips/include/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/07/26 19:54:56 drochner Exp $ +# $NetBSD: Makefile,v 1.11 2007/02/09 21:55:03 ad Exp $ INCSDIR=/usr/include/evbmips @@ -12,10 +12,10 @@ INCS= ansi.h aout_machdep.h asm.h \ int_const.h int_fmtio.h int_limits.h int_mwgwtypes.h int_types.h \ kcore.h kdbparam.h \ limits.h lock.h locore.h \ - math.h mcontext.h mips_opcode.h \ + math.h mcontext.h mips_opcode.h mutex.h \ param.h pcb.h \ pmap.h pmc.h proc.h profile.h psl.h pte.h ptrace.h \ - reg.h regdef.h regnum.h reloc.h \ + reg.h regdef.h regnum.h reloc.h rwlock.h \ setjmp.h signal.h stdarg.h \ trap.h types.h \ varargs.h vmparam.h \ diff --git a/sys/arch/evbmips/include/mutex.h b/sys/arch/evbmips/include/mutex.h new file mode 100644 index 00000000000..e4008a173ec --- /dev/null +++ b/sys/arch/evbmips/include/mutex.h @@ -0,0 +1,3 @@ +/* $NetBSD: mutex.h,v 1.2 2007/02/09 21:55:03 ad Exp $ */ + +#include <mips/mutex.h> diff --git a/sys/arch/evbmips/include/rwlock.h b/sys/arch/evbmips/include/rwlock.h new file mode 100644 index 00000000000..9d0cae21715 --- /dev/null +++ b/sys/arch/evbmips/include/rwlock.h @@ -0,0 +1,3 @@ +/* $NetBSD: rwlock.h,v 1.2 2007/02/09 21:55:03 ad Exp $ */ + +#include <mips/rwlock.h> |
