X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=util%2Ftstlockscope.c;h=c929c8c4d2e1e4d7c409887b4f1f6899ad6b3935;hp=56faa7b0380dfea93d1a0edfaa309c93b8bf563f;hb=36b87ab1076744bf0438799bb375705f535bcb6b;hpb=b7963f43864a0e8d4e738cf46f7ee4baad6db420 diff --git a/util/tstlockscope.c b/util/tstlockscope.c index 56faa7b..c929c8c 100644 --- a/util/tstlockscope.c +++ b/util/tstlockscope.c @@ -1,20 +1,38 @@ -/* $Id: tstlockscope.c,v 1.1 2006-07-02 21:22:17 adam Exp $ - Copyright (C) 2006 - Index Data ApS +/* This file is part of the Zebra server. + Copyright (C) Index Data + +Zebra 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, or (at your option) any later +version. + +Zebra 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ /** \file tstlockscope.c \brief tests scope of fcntl locks.. Either "process" or "thread" */ -#include +#if HAVE_CONFIG_H +#include +#endif #include #include #include #include -#include -#if YAZ_POSIX_THREADS +#include +#include #include +#if YAZ_POSIX_THREADS +#include #endif int fd; @@ -27,7 +45,7 @@ static int file_lock(int fd, int type, int cmd) area.l_type = type; area.l_whence = SEEK_SET; area.l_len = area.l_start = 0L; - + return fcntl(fd, cmd, &area); } @@ -40,33 +58,47 @@ void *run_func(void *arg) return 0; } -int main(int argc, char **argv) +void tst(void) { pthread_t child_thread; + int r; fd = open("my.LCK", (O_CREAT|O_RDWR), 0666); + + YAZ_CHECK(fd != -1); if (fd == -1) { - fprintf(stderr, "open: %s\n", strerror(errno)); - exit(1); + yaz_log(YLOG_FATAL|YLOG_ERRNO, "open"); + return; } - if (file_lock(fd, F_WRLCK, F_SETLKW) == -1) + r = file_lock(fd, F_WRLCK, F_SETLKW); + YAZ_CHECK(r != -1); + if (r == -1) { - fprintf(stderr, "fcntl: %s\n", strerror(errno)); - exit(1); + yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcnt"); + return; } #if YAZ_POSIX_THREADS pthread_create(&child_thread, 0 /* attr */, run_func, 0); pthread_join(child_thread, 0); #endif - printf("fcntl lock scope: %s\n", scope); + yaz_log(YLOG_LOG, "fcntl lock scope: %s", scope); +} + +int main(int argc, char **argv) +{ + YAZ_CHECK_INIT(argc, argv); + YAZ_CHECK_LOG(); + tst(); + YAZ_CHECK_TERM; return 0; } /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab