X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fshared%2Fwait_op.c;h=53bc664ab8282834dcc1eea770a00dcdcfdb913c;hb=c41c816a22f0e06f1c2b0a91563f3d9a3bcdb82a;hp=5c59205b131859e29b18ed69be85e3149a0a689b;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/shared/wait_op.c b/src/shared/wait_op.c index 5c59205..53bc664 100755 --- a/src/shared/wait_op.c +++ b/src/shared/wait_op.c @@ -1,11 +1,12 @@ -/* @(#) $Id: wait_op.c,v 1.5 2009/06/24 18:53:09 dcid Exp $ */ +/* @(#) $Id: ./src/shared/wait_op.c, 2011/09/08 dcid Exp $ + */ /* Copyright (C) 2009 Trend Micro Inc. * All rights reserved. * * This program is a free software; you can redistribute it * and/or modify it under the terms of the GNU General Public - * License (version 3) as published by the FSF - Free Software + * License (version 2) as published by the FSF - Free Software * Foundation */ @@ -23,7 +24,7 @@ void os_setwait() /* For same threads. */ __wait_lock = 1; - + if(isChroot()) { fp = fopen(WAIT_FILE, "w"); @@ -47,7 +48,7 @@ void os_setwait() void os_delwait() { __wait_lock = 0; - + if(isChroot()) { unlink(WAIT_FILE); @@ -65,7 +66,7 @@ void os_delwait() * Works as a simple inter process lock (only the main * process is allowed to lock). */ -#ifdef WIN32 +#ifdef WIN32 void os_wait() { if(!__wait_lock) @@ -94,7 +95,7 @@ void os_wait() void os_wait() { struct stat file_status; - + /* If the wait file is not present, keep going. */ @@ -108,7 +109,7 @@ void os_wait() if(stat(WAIT_FILE_PATH, &file_status) == -1) return; } - + /* Wait until the lock is gone. */ verbose(WAITING_MSG, __local_name);