X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fstored%2Fstored.h;h=552062104c822750fba0b138a4749b0c7508b06e;hb=b58f32ee0c8cce5b5f7af1416966b8bd2b3ccb6d;hp=21fbc6bee8977073987618d7d4e270a5edca61a5;hpb=46cafc85001144b3c57f4d0231e016f3d4bc1a8a;p=bacula%2Fbacula diff --git a/bacula/src/stored/stored.h b/bacula/src/stored/stored.h index 21fbc6bee8..552062104c 100644 --- a/bacula/src/stored/stored.h +++ b/bacula/src/stored/stored.h @@ -1,26 +1,34 @@ /* - * Storage daemon specific defines and includes - * - * Version $Id$ - */ -/* - Copyright (C) 2000-2003 Kern Sibbald and John Walker + Bacula® - The Network Backup Solution + + Copyright (C) 2000-2008 Free Software Foundation Europe e.V. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + 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 two of the GNU 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 + 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 General Public - License along with this program; if not, write to the Free - Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. + You should have received a copy of the GNU 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 John Walker. + The licensor of Bacula is the Free Software Foundation Europe + (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, + Switzerland, email:ftf@fsfeurope.org. +*/ +/* + * Storage daemon specific defines and includes + * + * Version $Id$ */ #ifndef __STORED_H_ @@ -28,31 +36,56 @@ #define STORAGE_DAEMON 1 +/* Set to debug mutexes */ +//#define SD_DEBUG_LOCK +const int sd_dbglvl = 300; + #ifdef HAVE_MTIO_H #include +#else +# ifdef HAVE_SYS_MTIO_H +# include +# else +# ifdef HAVE_SYS_TAPE_H +# include +# endif +# endif #endif -#ifdef HAVE_SYS_MTIO_H -#include -#endif +#include "lock.h" #include "block.h" #include "record.h" #include "dev.h" #include "stored_conf.h" #include "bsr.h" #include "jcr.h" +#include "reserve.h" #include "protos.h" #ifdef HAVE_LIBZ -#include /* compression headers */ +#include /* compression headers */ #else #define uLongf uint32_t #endif +#ifdef HAVE_FNMATCH +#include +#else +#include "lib/fnmatch.h" +#endif +#ifdef HAVE_DIRENT_H +#include +#define NAMELEN(dirent) (strlen((dirent)->d_name)) +#endif +#ifndef HAVE_READDIR_R +int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result); +#endif -extern STORES *me; /* "Global" daemon resource */ -extern bool forge_on; /* proceed inspite of I/O errors */ - -#ifdef debug_tracing -extern int _rewind_dev(char *file, int line, DEVICE *dev); -#define rewind_dev(d) _rewind_dev(__FILE__, __LINE__, (d)) +#ifdef USE_FAKETAPE +# include "faketape.h" #endif +/* Daemon globals from stored.c */ +extern STORES *me; /* "Global" daemon resource */ +extern bool forge_on; /* proceed inspite of I/O errors */ +extern pthread_mutex_t device_release_mutex; +extern pthread_cond_t wait_device_release; /* wait for any device to be released */ + #endif /* __STORED_H_ */