/* ------------------ **
** Includes **
** ------------------ */
#include "Yap.h"
#if defined(YAPOR) || defined(TABLING)
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "Yatom.h"
#include "yapio.h"
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if HAVE_STDARG_H
/* ------------------------------------------- **
** Global variables are defined here **
** ------------------------------------------- */
struct local_data *LOCAL;
#ifdef YAPOR
struct worker WORKER;
#endif /* YAPOR */
/* -------------------------- **
** Global functions **
** -------------------------- */
void abort_optyap(const char *msg, ...) {
va_list args;
va_start(args, msg);
fprintf(stderr, "[ ");
fprintf (stderr, "Worker %d ", worker_id);
fprintf (stderr, "Aborting OPTYap -> ");
vfprintf(stderr, msg, args);
fprintf(stderr, " ]\n");
unmap_memory();
exit (1);
}
void itos(int i, char *s) {
int n,r,j;
n = 10;
while (n <= i) n *= 10;
j = 0;
while (n > 1) {
n = n / 10;
r = i / n;
i = i - r * n;
s[j++] = r + '0';
s[j] = 0;
return;
void information_message(const char *mesg,...) {
va_start(args, mesg);
vfprintf(stderr, mesg, args);
#if defined(YAPOR_ERRORS) || defined(TABLING_ERRORS)
void error_message(const char *mesg, ...) {
LOCK(GLOBAL_LOCKS_stderr_messages);
fprintf(stderr, "W%d: ", worker_id);
fprintf(stderr, "Potencial Error -> ");
UNLOCK(GLOBAL_LOCKS_stderr_messages);
#endif /* YAPOR_ERRORS || TABLING_ERRORS */
#endif /* YAPOR || TABLING */