Lines Matching refs:msg

48 #define	FATAL(msg, fcode) \  argument
50 syslog(LOG_ERR, "ERROR: %s", (msg)); \
52 __nisdb_get_tsd()->fatalmsg = msg; \
55 #define FATAL3(msg, fcode, retval) \ argument
57 syslog(LOG_ERR, "ERROR: %s", (msg)); \
59 __nisdb_get_tsd()->fatalmsg = msg; \
64 #define LOCKVAL(lockcall, msg, lockcode) \ argument
69 __nisdb_get_tsd()->fatalmsg = msg; \
74 #define LOCKVAL(lockcall, msg, lockcode) \ argument
79 __nisdb_get_tsd()->fatalmsg = msg; \
84 #define LOCKV(lockcall, msg) \ argument
87 LOCKVAL(lockcall, msg, lockcode); \
91 #define LOCK(lockcall, retval, msg) \ argument
94 LOCKVAL(lockcall, msg, lockcode); \
100 #define READLOCK(this, retval, msg) \ argument
101 LOCK(this->acqnonexcl, retval, msg)
102 #define READUNLOCK(this, retval, msg) \ argument
103 LOCK(this->relnonexcl, retval, msg)
106 #define READLOCKV(this, msg) \ argument
107 LOCKV(this->acqnonexcl, msg)
108 #define READUNLOCKV(this, msg) \ argument
109 LOCKV(this->relnonexcl, msg)
112 #define READLOCKNR(this, rescode, msg) \ argument
113 LOCKVAL(this->acqnonexcl, msg, rescode)
114 #define READUNLOCKNR(this, rescode, msg) \ argument
115 LOCKVAL(this->relnonexcl, msg, rescode)
118 #define WRITELOCK(this, retval, msg) \ argument
119 LOCK(this->acqexcl, retval, msg)
120 #define WRITEUNLOCK(this, retval, msg) \ argument
121 LOCK(this->relexcl, retval, msg)
124 #define TRYWRITELOCK(this, rescode, msg) \ argument
125 LOCKVAL(this->tryacqexcl, msg, rescode)
128 #define WRITELOCKV(this, msg) \ argument
129 LOCKV(this->acqexcl, msg)
130 #define WRITEUNLOCKV(this, msg) \ argument
131 LOCKV(this->relexcl, msg)
134 #define WRITELOCKNR(this, rescode, msg) \ argument
135 LOCKVAL(this->acqexcl, msg, rescode)
136 #define WRITEUNLOCKNR(this, rescode, msg) \ argument
137 LOCKVAL(this->relexcl, msg, rescode)
140 #define WRITELOCK2(this, retval, msg, that) \ argument
143 WRITELOCKNR(this, lockcode2, msg); \
145 WRITEUNLOCKNR(that, lockcode1, msg); \
163 #define READLOCK2(this, retval, msg, that) \ argument
166 READLOCKNR(this, lockcode2, msg); \
168 READUNLOCKNR(that, lockcode1, msg); \
185 #define ASSERTWRITELOCKHELD(lvar, retval, msg) \ argument
190 __nisdb_get_tsd()->fatalmsg = msg; \