once.c revision cb73e2bfacb60eed27a3e4940f6dbe0c0580fc18
/*
* Copyright (C) 1999 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
/* $Id: once.c,v 1.1 1999/09/23 18:14:16 tale Exp $ */
/* Principal Authors: DCL */
#ifdef ISC_ONCE_USE_MUTEX
#include <stdio.h>
#include <process.h>
#endif
#include <windows.h>
#include <isc/assertions.h>
#ifdef ISC_ONCE_USE_MUTEX
/*
* XXXDCL someone (me? bob?) should decide which method to use,
* the mutex method or the InterlockedDecrement method.
*/
{
char mutex_name[64];
/*
* Create a name that is associated only with this process
* and controller.
*/
getpid(), controller);
/*
* Create the mutex (or attach to the existing mutex)
* and lock it.
*/
return (ISC_R_UNEXPECTED);
return (ISC_R_UNEXPECTED);
/*
* Recheck need for initialization now that
* the controller is locked.
*/
function();
}
}
return (ISC_R_SUCCESS);
}
#else /* not ISC_ONCE_USE_MUTEX, use InterlockedDecrement instead */
{
function();
}
} else {
/*
* Spin wait.
*/
}
}
}
return (ISC_R_SUCCESS);
}
#endif /* ISC_ONCE_USE_MUTEX */