]> git.sur5r.net Git - bacula/bacula/commitdiff
Change API malloc/free entrypoint names
authorKern Sibbald <kern@sibbald.com>
Mon, 13 Oct 2008 19:42:28 +0000 (19:42 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 13 Oct 2008 19:42:28 +0000 (19:42 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7781 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/kernstodo
bacula/src/dird/vbackup.c
bacula/src/filed/fd_plugins.h

index 967a215fe7634a38c86675718c62e3fa0ead15db..a9e713efcb675c9baf30155f897ceede929014de 100644 (file)
@@ -73,14 +73,11 @@ Priority:
 ================
 - 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.
index a382c073bb97d3a6d8455be8830f8738e1cb45e7..18eb34c332744eea0bbb58ca3010c8996f694481 100644 (file)
@@ -166,7 +166,7 @@ _("This Job is not an Accurate backup so is not equivalent to a Full backup.\n")
    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;
    }
 
index 302ebb2346204e63bfa0573232287b020fc525a0..afeb7ecadd392f696b46c17b5a04dfcb2d43227d 100644 (file)
@@ -206,9 +206,9 @@ typedef struct s_baculaFuncs {
        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;