JAM_UnlockMB - Unlock message base
#include <jamlib/jam.h>
int JAM_UnlockMB(s_JamBase* Base_PS);
Unlocks message base, allowing other programs to modify it.
- Base_PS
- The message base to unlock
- 0
- if successful
- JAM_IO_ERROR
- if an I/O error occured. See JAM_Errno(3)
- JAM_BAD_PARAM
- if Base_PS is NULL
int Result_I;
Result_I = JAM_UnlockMB(Base_PS);
if (Result_I)
printf("JAM_UnlockMB returned %d.\n", Result_I);
This manual page was created by Sir Raorn <raorn@altlinux.ru>, based on
original JAMlib documentation by Bjorn Stenberg <bjorn@haxx.nu> and
Johan Billing <billing@df.lth.se>.
jamlib(3), JAM_LockMB(3), JAM_Errno(3)