summaryrefslogtreecommitdiffstats
path: root/libdimension
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-07-14 20:14:01 -0600
committerTavian Barnes <tavianator@gmail.com>2010-07-14 20:21:53 -0600
commit69aa6e0ee0ca36bd8ea77135b62c4aac59c30f99 (patch)
tree38345886d75deb51ef3011ea92326ae39da84d81 /libdimension
parentdda43d0adc1fb7323a6578f61565275694364bbd (diff)
downloaddimension-69aa6e0ee0ca36bd8ea77135b62c4aac59c30f99.tar.xz
Don't expose the contents of struct dmnsn_progress.
Diffstat (limited to 'libdimension')
-rw-r--r--libdimension/Makefile.am1
-rw-r--r--libdimension/canvas.c1
-rw-r--r--libdimension/dimension/progress.h24
-rw-r--r--libdimension/dimension_impl.h1
-rw-r--r--libdimension/progress-struct.h40
-rw-r--r--libdimension/progress.c8
6 files changed, 50 insertions, 25 deletions
diff --git a/libdimension/Makefile.am b/libdimension/Makefile.am
index 905606d..43b3169 100644
--- a/libdimension/Makefile.am
+++ b/libdimension/Makefile.am
@@ -73,6 +73,7 @@ libdimension_la_SOURCES = $(nobase_include_HEADERS) \
platform.h \
point_light.c \
progress.c \
+ progress-struct.h \
prtree.c \
prtree.h \
raytrace.c \
diff --git a/libdimension/canvas.c b/libdimension/canvas.c
index 8a32d2a..7da63f8 100644
--- a/libdimension/canvas.c
+++ b/libdimension/canvas.c
@@ -19,7 +19,6 @@
*************************************************************************/
#include "dimension.h"
-#include <pthread.h>
#include <stdlib.h> /* For free() */
/* Allocate a new canvas, of width x and height y */
diff --git a/libdimension/dimension/progress.h b/libdimension/dimension/progress.h
index 8b20ba0..0a7dce2 100644
--- a/libdimension/dimension/progress.h
+++ b/libdimension/dimension/progress.h
@@ -28,29 +28,7 @@
#ifndef DIMENSION_PROGRESS_H
#define DIMENSION_PROGRESS_H
-#include <pthread.h>
-
-/* A single element in an array for dmnsn_progress. Progress of this item is
- progress/total. */
-typedef struct {
- unsigned int progress, total;
-} dmnsn_progress_element;
-
-typedef struct {
- /* Array of progress elements. Progress is given by P(0), where
- P(i) = (elements[i].progress + P(i + 1))/elements[i].total. */
- dmnsn_array *elements;
-
- /* The worker thread */
- pthread_t thread;
-
- /* Read-write synchronization */
- pthread_rwlock_t *rwlock;
-
- /* Condition variable for waiting for a particular amount of progress */
- pthread_cond_t *cond;
- pthread_mutex_t *mutex;
-} dmnsn_progress;
+typedef struct dmnsn_progress dmnsn_progress;
/* Allocate a new progress object */
dmnsn_progress *dmnsn_new_progress();
diff --git a/libdimension/dimension_impl.h b/libdimension/dimension_impl.h
index cf1671e..0329dbc 100644
--- a/libdimension/dimension_impl.h
+++ b/libdimension/dimension_impl.h
@@ -23,6 +23,7 @@
#define _GNU_SOURCE
#include "dimension.h"
+#include "progress-struct.h"
#include "platform.h"
#include "threads.h"
#include "prtree.h"
diff --git a/libdimension/progress-struct.h b/libdimension/progress-struct.h
new file mode 100644
index 0000000..a71cf63
--- /dev/null
+++ b/libdimension/progress-struct.h
@@ -0,0 +1,40 @@
+/*************************************************************************
+ * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> *
+ * *
+ * This file is part of The Dimension Library. *
+ * *
+ * The Dimension Library 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 3 of the *
+ * License, or (at your option) any later version. *
+ * *
+ * The Dimension Library 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 for more details. *
+ * *
+ * You should have received a copy of the GNU Lesser General Public *
+ * License along with this program. If not, see *
+ * <http://www.gnu.org/licenses/>. *
+ *************************************************************************/
+
+#ifndef DIMENSION_IMPL_PROGRESS_STRUCT_H
+#define DIMENSION_IMPL_PROGRESS_STRUCT_H
+
+struct dmnsn_progress {
+ /* Array of progress elements. Progress is given by P(0), where
+ P(i) = (elements[i].progress + P(i + 1))/elements[i].total. */
+ dmnsn_array *elements;
+
+ /* The worker thread */
+ pthread_t thread;
+
+ /* Read-write synchronization */
+ pthread_rwlock_t *rwlock;
+
+ /* Condition variable for waiting for a particular amount of progress */
+ pthread_cond_t *cond;
+ pthread_mutex_t *mutex;
+};
+
+#endif /* DIMENSION_IMPL_PROGRESS_STRUCT_H */
diff --git a/libdimension/progress.c b/libdimension/progress.c
index 810920b..9d51d8d 100644
--- a/libdimension/progress.c
+++ b/libdimension/progress.c
@@ -18,9 +18,15 @@
* <http://www.gnu.org/licenses/>. *
*************************************************************************/
-#include "dimension.h"
+#include "dimension_impl.h"
#include <pthread.h>
+/* A single element in an array for dmnsn_progress. Progress of this item is
+ progress/total. */
+typedef struct {
+ unsigned int progress, total;
+} dmnsn_progress_element;
+
/* For thread synchronization */
static void dmnsn_progress_rdlock(const dmnsn_progress *progress);
static void dmnsn_progress_wrlock(dmnsn_progress *progress);