copyright header in OPTYap files

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1315 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
ricroc
2005-05-31 08:24:24 +00:00
parent 9cf12ce705
commit b8546491fc
29 changed files with 320 additions and 17 deletions

View File

@@ -1,6 +1,23 @@
/* ------------------------------- **
** Atomic lock for PTHREADS **
** ------------------------------- */
/*************************************************************************
* *
* YAP Prolog *
* *
* Yap Prolog was developed at NCCUP - Universidade do Porto *
* *
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
* *
**************************************************************************
* *
* File: pthread_locks.h *
* Last rev: *
* mods: *
* comments: *
* *
*************************************************************************/
/* ----------------------------------- **
** Atomic locks for PTHREADS **
** ----------------------------------- */
#define INIT_LOCK(LOCK_VAR) pthread_mutex_init(&(LOCK_VAR), NULL)
#define DESTROY_LOCK(LOCK_VAR) pthread_mutex_destroy(&(LOCK_VAR))