Skip to content

Commit

Permalink
* sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
Browse files Browse the repository at this point in the history
	Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
	net/route.h.

	* hurd/report-wait.c (describe_number): Use __stpcpy to prepend
	flavor to description only when flavor is not NULL.

	* hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
	mutex after SIGIO/SIGURG lookup loop.
  • Loading branch information
Roland McGrath committed Jan 7, 2009
1 parent 0db58a7 commit c90c1e1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
12 changes: 12 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2009-01-07 Samuel Thibault <samuel.thibault@ens-lyon.org>

* sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
net/route.h.

* hurd/report-wait.c (describe_number): Use __stpcpy to prepend
flavor to description only when flavor is not NULL.

* hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
mutex after SIGIO/SIGURG lookup loop.

2009-01-03 Samuel Thibault <samuel.thibault@ens-lyon.org>

* bits/resource.h (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Add macros.
Expand Down
1 change: 1 addition & 0 deletions hurd/hurdsig.c
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,7 @@ signal_allowed (int signo, mach_port_t refport)
}
_hurd_port_free (&_hurd_dtable[d]->port, &ulink, port);
}
__mutex_unlock (&_hurd_dtable_lock);
/* If we found a lucky winner, we've set D to -1 in the loop. */
if (lucky)
goto win;
Expand Down
7 changes: 6 additions & 1 deletion sysdeps/mach/hurd/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 1993,94,95,96,97,98,99,2000,2001,2002, 2003, 2004
# Copyright (C) 1993,94,95,96,97,98,99,2000,2001,2002,2003,2004,2009
# Free Software Foundation, Inc.
# This file is part of the GNU C Library.

Expand Down Expand Up @@ -206,4 +206,9 @@ ifeq ($(subdir),sunrpc)
sysdep_headers += nfs/nfs.h
endif

ifeq ($(subdir),socket)
sysdep_headers += net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h \
net/route.h
endif

endif # in-Makerules

0 comments on commit c90c1e1

Please sign in to comment.