[glib] Move includes to the top of the file
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Move includes to the top of the file
- Date: Sun, 25 Sep 2011 05:01:56 +0000 (UTC)
commit db04f59780a40ada3c7abb77ca39652c35cfa9e4
Author: Matthias Clasen <mclasen redhat com>
Date: Sun Sep 25 00:42:37 2011 -0400
Move includes to the top of the file
glib/gthread-posix.c | 37 ++++++++++++++++---------------------
1 files changed, 16 insertions(+), 21 deletions(-)
---
diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c
index ce04ce4..a7b0a23 100644
--- a/glib/gthread-posix.c
+++ b/glib/gthread-posix.c
@@ -42,14 +42,28 @@
#include "config.h"
#include "gthread.h"
+
#include "gthreadprivate.h"
#include "gslice.h"
+#include "gmessages.h"
+#include "gstrfuncs.h"
-#include <pthread.h>
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <errno.h>
-#include <stdio.h>
+#include <pthread.h>
+
+#ifdef HAVE_SYS_TIME_H
+# include <sys/time.h>
+#endif
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+#ifdef HAVE_SCHED_H
+#include <sched.h>
+#endif
+
static void
g_thread_abort (gint status,
@@ -947,23 +961,6 @@ g_private_set (GPrivate *key,
/* {{{1 GThread */
-#include "glib.h"
-#include "gthreadprivate.h"
-
-#include <pthread.h>
-#include <errno.h>
-#include <stdlib.h>
-#ifdef HAVE_SYS_TIME_H
-# include <sys/time.h>
-#endif
-#ifdef HAVE_UNISTD_H
-# include <unistd.h>
-#endif
-
-#ifdef HAVE_SCHED_H
-#include <sched.h>
-#endif
-
#define posix_check_err(err, name) G_STMT_START{ \
int error = (err); \
if (error) \
@@ -974,8 +971,6 @@ g_private_set (GPrivate *key,
#define posix_check_cmd(cmd) posix_check_err (cmd, #cmd)
-#define G_MUTEX_SIZE (sizeof (pthread_mutex_t))
-
void
g_system_thread_create (GThreadFunc thread_func,
gpointer arg,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]