diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2004-11-08 15:38:03 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2004-11-08 15:38:03 +0000 |
commit | 9893465f92553aef7b1e60d4487f11660d37cea4 (patch) | |
tree | c31d417216cc3755d278dd046c1180173cdef1c9 /libports/resume-all-rpcs.c | |
parent | 066bcd5ae6c877bbfc92fa2084625380f2ea9764 (diff) | |
download | hurd-9893465f92553aef7b1e60d4487f11660d37cea4.tar.gz hurd-9893465f92553aef7b1e60d4487f11660d37cea4.tar.bz2 hurd-9893465f92553aef7b1e60d4487f11660d37cea4.zip |
2004-11-03 Ognyan Kulev <ogi@fmi.uni-sofia.bg>
* resume-all-rpcs.c (ports_resume_all_rpcs): Fix check for block
condition.
* resume-bucket-rpcs.c (ports_resume_bucket_rpcs): Likewise.
* resume-class-rpcs.c (ports_resume_class_rpcs): Likewise.
* resume-port-rpcs.c (ports_resume_port_rpcs): Likewise.
Diffstat (limited to 'libports/resume-all-rpcs.c')
-rw-r--r-- | libports/resume-all-rpcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libports/resume-all-rpcs.c b/libports/resume-all-rpcs.c index fa978c1e..452da3b2 100644 --- a/libports/resume-all-rpcs.c +++ b/libports/resume-all-rpcs.c @@ -28,7 +28,7 @@ ports_resume_all_rpcs () mutex_lock (&_ports_lock); assert (_ports_flags & _PORTS_INHIBITED); _ports_flags &= ~_PORTS_INHIBITED; - if (_ports_flags | _PORTS_BLOCKED) + if (_ports_flags & _PORTS_BLOCKED) { _ports_flags &= ~_PORTS_BLOCKED; condition_broadcast (&_ports_block); |