| 219 | } |
| 220 | |
| 221 | static __inline void |
| 222 | _ng_hook_set_private(hook_p hook, void *val, char * file, int line) |
| 223 | { |
| 224 | _chkhook(hook, file, line); |
| 225 | _NG_HOOK_SET_PRIVATE(hook, val); |
| 226 | } |
| 227 | |
| 228 | static __inline void |
| 229 | _ng_hook_set_rcvmsg(hook_p hook, ng_rcvmsg_t *val, char * file, int line) |
nothing calls this directly
no test coverage detected