]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/workq.h
Add the updated version of the the win32 pathname fix.
[bacula/bacula] / bacula / src / lib / workq.h
index 2c4c11d27e0f689aaa9e9998466b13d13a2b8f8a..7e5fab5429c48762010679d230880a050eb66391 100644 (file)
  *   Version $Id$
  */
 /*
-   Copyright (C) 2000-2003 Kern Sibbald and John Walker
+   Copyright (C) 2001-2006 Kern Sibbald
 
    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.
+   modify it under the terms of the GNU General Public License
+   version 2 as amended 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 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.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
+   the file LICENSE for additional details.
 
  */
 
@@ -59,10 +54,10 @@ typedef struct workq_tag {
 #define WORKQ_VALID  0xdec1992
 
 extern int workq_init(
-             workq_t *wq,
-             int     threads,        /* maximum threads */
-             void   *(*engine)(void *)   /* engine routine */
-                   );
+              workq_t *wq,
+              int     threads,        /* maximum threads */
+              void   *(*engine)(void *)   /* engine routine */
+                    );
 extern int workq_destroy(workq_t *wq);
 extern int workq_add(workq_t *wq, void *element, workq_ele_t **work_item, int priority);
 extern int workq_remove(workq_t *wq, workq_ele_t *work_item);