mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-05-01 01:04:43 +00:00
Estimated hours taken: 1 runtime/*.h: runtime/*.c: runtime/mercury_conf.h.in: Remove old .h files. Update #includes to refer to mercury_*.h Update #ifdef MODULE_H to be #ifdef MERCURY_MODULE_H
25 lines
494 B
C
25 lines
494 B
C
/*
|
|
** Copyright (C) 1997 The University of Melbourne.
|
|
** This file may only be copied under the terms of the GNU Library General
|
|
** Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
*/
|
|
|
|
/*
|
|
** spinlock.c - defines the code for locking and unlocking spin locks.
|
|
*/
|
|
|
|
#include "mercury_imp.h"
|
|
#include "mercury_spinlock.h"
|
|
|
|
void
|
|
do_spinlock(Word *l)
|
|
{
|
|
fatal_error("do_spinlock unimplemented");
|
|
}
|
|
|
|
void
|
|
do_spinunlock(Word *l)
|
|
{
|
|
fatal_error("do_spinunlock unimplemented");
|
|
}
|