diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-09 00:48:37 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-09 00:48:37 +0000 |
commit | 43d61970c52d914b904a26b9f99efb1559d21b35 (patch) | |
tree | 37730b31e8f345370ceb1796fc0ef7b680245978 /ace/SV_Semaphore_Complex.i | |
parent | 414eacdf84def957356627347beae45d1f93e04a (diff) | |
download | ATCD-43d61970c52d914b904a26b9f99efb1559d21b35.tar.gz |
new
Diffstat (limited to 'ace/SV_Semaphore_Complex.i')
-rw-r--r-- | ace/SV_Semaphore_Complex.i | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ace/SV_Semaphore_Complex.i b/ace/SV_Semaphore_Complex.i index b85fd09ec6d..deabeb2f4d4 100644 --- a/ace/SV_Semaphore_Complex.i +++ b/ace/SV_Semaphore_Complex.i @@ -6,77 +6,77 @@ #include "ace/Trace.h" inline int -ACE_SV_Semaphore_Complex::acquire (int n, int flags) const +ACE_SV_Semaphore_Complex::acquire (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::acquire"); return ACE_SV_Semaphore_Simple::acquire (n + 2, flags); } inline int -ACE_SV_Semaphore_Complex::acquire_read (int n, int flags) const +ACE_SV_Semaphore_Complex::acquire_read (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::acquire_read"); return this->acquire (n, flags); } inline int -ACE_SV_Semaphore_Complex::acquire_write (int n, int flags) const +ACE_SV_Semaphore_Complex::acquire_write (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::acquire_write"); return this->acquire (n, flags); } inline int -ACE_SV_Semaphore_Complex::tryacquire (int n, int flags) const +ACE_SV_Semaphore_Complex::tryacquire (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::tryacquire"); return ACE_SV_Semaphore_Simple::tryacquire (n + 2, flags); } inline int -ACE_SV_Semaphore_Complex::tryacquire_read (int n, int flags) const +ACE_SV_Semaphore_Complex::tryacquire_read (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::tryacquire_read"); return this->tryacquire (n, flags); } inline int -ACE_SV_Semaphore_Complex::tryacquire_write (int n, int flags) const +ACE_SV_Semaphore_Complex::tryacquire_write (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::tryacquire_write"); return this->tryacquire (n, flags); } inline int -ACE_SV_Semaphore_Complex::release (int n, int flags) const +ACE_SV_Semaphore_Complex::release (u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::release"); return ACE_SV_Semaphore_Simple::release (n + 2, flags); } inline int -ACE_SV_Semaphore_Complex::op (int val, int n, int flags) const +ACE_SV_Semaphore_Complex::op (int val, u_short n, int flags) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::op"); return ACE_SV_Semaphore_Simple::op (val, n + 2, flags); } inline int -ACE_SV_Semaphore_Complex::op (sembuf op_vec[], int n) const +ACE_SV_Semaphore_Complex::op (sembuf op_vec[], u_short n) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::op"); return ACE_SV_Semaphore_Simple::op (op_vec, n + 2); } inline int -ACE_SV_Semaphore_Complex::control (int cmd, semun arg, int n) const +ACE_SV_Semaphore_Complex::control (int cmd, semun arg, u_short n) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::control"); return ACE_SV_Semaphore_Simple::control (cmd, arg, n + 2); } inline int -ACE_SV_Semaphore_Complex::control (int cmd, int value, int n) const +ACE_SV_Semaphore_Complex::control (int cmd, int value, u_short n) const { ACE_TRACE ("ACE_SV_Semaphore_Complex::control"); return ACE_SV_Semaphore_Simple::control (cmd, value, n + 2); |