X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Flib%2Fres.c;h=db7f36e935541b1cd64121965aef63cade180894;hb=4132c9f33642f579d89700f36caced609d374d51;hp=e3065284f205f6f3409f741f1cb8490d9f2e7ed3;hpb=f0bb1c65b1149342eba3823d78b389a2af1a5643;p=bacula%2Fbacula diff --git a/bacula/src/lib/res.c b/bacula/src/lib/res.c index e3065284f2..db7f36e935 100644 --- a/bacula/src/lib/res.c +++ b/bacula/src/lib/res.c @@ -1,3 +1,30 @@ +/* + Bacula® - The Network Backup Solution + + Copyright (C) 2000-2008 Free Software Foundation Europe e.V. + + The main author of Bacula is Kern Sibbald, with contributions from + many others, a complete list can be found in the file AUTHORS. + This program is Free Software; you can redistribute it and/or + modify it under the terms of version three of the GNU Affero General Public + License as published by the Free Software Foundation and included + in the file LICENSE. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + Bacula® is a registered trademark of Kern Sibbald. + The licensor of Bacula is the Free Software Foundation Europe + (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, + Switzerland, email:ftf@fsfeurope.org. +*/ /* * This file handles locking and seaching resources * @@ -6,47 +33,20 @@ * * Version $Id$ */ -/* - Copyright (C) 2000-2005 Kern Sibbald - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - version 2 as ammended with additional clauses defined in the - file LICENSE in the main source directory. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - the file LICENSE for additional details. - - */ #include "bacula.h" -extern int debug_level; - /* Each daemon has a slightly different set of * resources, so it will define the following * global values. */ -extern int r_first; -extern int r_last; +extern int32_t r_first; +extern int32_t r_last; extern RES_TABLE resources[]; extern RES **res_head; -#ifdef HAVE_WIN32 -// work around visual studio name manling preventing external linkage since res_all -// is declared as a different type when instantiated. -extern "C" CURES res_all; -extern "C" int res_all_size; -#else -extern CURES res_all; -extern int res_all_size; -#endif - - brwlock_t res_lock; /* resource lock */ -static int res_locked = 0; /* set when resource chains locked -- for debug */ +static int res_locked = 0; /* resource chain lock count -- for debug */ /* #define TRACE_RES */ @@ -63,7 +63,7 @@ void b_LockRes(const char *file, int line) } #endif if ((errstat=rwl_writelock(&res_lock)) != 0) { - Emsg3(M_ABORT, 0, "rwl_writelock failure at %s:%d: ERR=%s\n", + Emsg3(M_ABORT, 0, _("rwl_writelock failure at %s:%d: ERR=%s\n"), file, line, strerror(errstat)); } res_locked++; @@ -73,7 +73,7 @@ void b_UnlockRes(const char *file, int line) { int errstat; if ((errstat=rwl_writeunlock(&res_lock)) != 0) { - Emsg3(M_ABORT, 0, "rwl_writeunlock failure at %s:%d:. ERR=%s\n", + Emsg3(M_ABORT, 0, _("rwl_writeunlock failure at %s:%d:. ERR=%s\n"), file, line, strerror(errstat)); } res_locked--; @@ -87,7 +87,7 @@ void b_UnlockRes(const char *file, int line) * Return resource of type rcode that matches name */ RES * -GetResWithName(int rcode, char *name) +GetResWithName(int rcode, const char *name) { RES *res; int rindex = rcode - r_first;