================
- Detect deadlocks in reservations.
- Plugins:
- - add malloc/restore
- Add list during dump
- Add in plugin code flag
- Add bRC_EndJob -- stops more calls to plugin this job
- Add bRC_Term (unload plugin)
- remove time_t from Jmsg and use utime_t?
- - add more doc
- - distinguish two types of plugins
- Extended ACLs
- Deadlock detection, watchdog sees if counter advances when jobs are
running. With debug on, can do a "status" command.
Dmsg1(10, "Accurate jobids=%s\n", jobids);
if (*jobids == 0) {
free_pool_memory(jobids);
- Jmsg(jcr, M_FATAL, 0, _("Cannot find previous JobIds.\n"));
+ Jmsg(jcr, M_FATAL, 0, _("No previous Jobs found.\n"));
return false;
}
int type, time_t mtime, const char *fmt, ...);
bRC (*DebugMessage)(bpContext *ctx, const char *file, int line,
int level, const char *fmt, ...);
- void *(*malloc)(bpContext *ctx, const char *file, int line,
+ void *(*baculaMalloc)(bpContext *ctx, const char *file, int line,
size_t size);
- void (*free)(bpContext *ctx, const char *file, int line, void *mem);
+ void (*baculaFree)(bpContext *ctx, const char *file, int line, void *mem);
} bFuncs;