|
@@ -0,0 +1,60 @@
|
|
|
+/*
|
|
|
+ * StarPU
|
|
|
+ * Copyright (C) INRIA 2008-2009 (see AUTHORS file)
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU Lesser General Public License as published by
|
|
|
+ * the Free Software Foundation; either version 2.1 of the License, or (at
|
|
|
+ * your option) any later version.
|
|
|
+ *
|
|
|
+ * This program is distributed in the hope that it will be useful, but
|
|
|
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
+ *
|
|
|
+ * See the GNU Lesser General Public License in COPYING.LGPL for more details.
|
|
|
+ */
|
|
|
+
|
|
|
+#include <common/config.h>
|
|
|
+#include <core/debug.h>
|
|
|
+
|
|
|
+#ifdef VERBOSE
|
|
|
+/* we want a single writer at the same time to have a log that is readable */
|
|
|
+static pthread_mutex_t logfile_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
+static FILE *logfile;
|
|
|
+#endif
|
|
|
+
|
|
|
+void open_debug_logfile(void)
|
|
|
+{
|
|
|
+#ifdef VERBOSE
|
|
|
+ /* what is the name of the file ? default = "starpu.log" */
|
|
|
+ char *logfile_name;
|
|
|
+
|
|
|
+ logfile_name = getenv("LOGFILENAME");
|
|
|
+ if (!logfile_name)
|
|
|
+ {
|
|
|
+ logfile_name = "starpu.log";
|
|
|
+ }
|
|
|
+
|
|
|
+ logfile = fopen(logfile_name, "w+");
|
|
|
+ STARPU_ASSERT(logfile);
|
|
|
+#endif
|
|
|
+}
|
|
|
+
|
|
|
+void close_debug_logfile(void)
|
|
|
+{
|
|
|
+#ifdef VERBOSE
|
|
|
+ fclose(logfile);
|
|
|
+#endif
|
|
|
+}
|
|
|
+
|
|
|
+void print_to_logfile(const char *format, ...)
|
|
|
+{
|
|
|
+#ifdef VERBOSE
|
|
|
+ va_list args;
|
|
|
+ va_start(args, format);
|
|
|
+ pthread_mutex_lock(&logfile_mutex);
|
|
|
+ vfprintf(logfile, format, args);
|
|
|
+ pthread_mutex_unlock(&logfile_mutex);
|
|
|
+ va_end( args );
|
|
|
+#endif
|
|
|
+}
|