Lines Matching defs:rescode
111 /* As READLOCK/READUNLOCK, but set rescode instead of returning on failure */
112 #define READLOCKNR(this, rescode, msg) \
113 LOCKVAL(this->acqnonexcl, msg, rescode)
114 #define READUNLOCKNR(this, rescode, msg) \
115 LOCKVAL(this->relnonexcl, msg, rescode)
124 #define TRYWRITELOCK(this, rescode, msg) \
125 LOCKVAL(this->tryacqexcl, msg, rescode)
133 /* As WRITELOCK/WRITEUNLOCK, but set rescode instead of returning on failure */
134 #define WRITELOCKNR(this, rescode, msg) \
135 LOCKVAL(this->acqexcl, msg, rescode)
136 #define WRITEUNLOCKNR(this, rescode, msg) \
137 LOCKVAL(this->relexcl, msg, rescode)