diff options
author | Tim Janik <timj@gtk.org> | 2001-01-31 06:27:41 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2001-01-31 06:27:41 +0000 |
commit | f0b9abe801c2e0cccb7930421a81bb77031e3251 (patch) | |
tree | 0fd7b94962ba66635a55e3345b366482c4aea5f4 /gobject/gvaluetypes.c | |
parent | f9dfcb27b7ba635212711a1f9d22fe8282813732 (diff) |
adapt to work with new CVS gtk-doc, leaving the old rules in place caused
Wed Jan 31 07:14:22 2001 Tim Janik <timj@gtk.org>
* gobject/Makefile.am: adapt to work with new CVS gtk-doc, leaving the old
rules in place caused bogus recursions. main changes:
- add to conditionalized section:
all-local:
$(MAKE) scan
$(MAKE) templates
$(MAKE) sgml
$(MAKE) html.stamp
html.stamp: sgml.stamp $(EXTRA_SGML_FILES)
$(MAKE) html
DOC_STAMPS= html.stamp sgml.stamp
- change:
maintainer-clean-local: clean
- cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
+ cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt $(DOC_STAMPS)
* glib/Makefile.am (maintainer-clean-local): dito.
Wed Jan 31 06:21:32 2001 Tim Janik <timj@gtk.org>
* gobject/tmpl/types.sgml: applied docu patch from Eric Lemings
<eric.b.lemings@lmco.com>, did some more editing.
Wed Jan 31 06:19:49 2001 Tim Janik <timj@gtk.org>
* gparam.h: gtk-doc sucks for not dealing with #define inside enums.
* gtype.[hc]: added G_TYPE_FLAG_RESERVED_ID_BIT, a bit in the type
number that's supposed to be left untouched (preserved mainly
for the signal code).
* *.c: added thread safety code, based on an old patch from sebastian.
the remaining thread safety issues are now datalists on pspecs (to be
solved im gdataset.c) and gvalue.c where locking concerns value exchange
functionality only, and that's soon to be revised.
Diffstat (limited to 'gobject/gvaluetypes.c')
-rw-r--r-- | gobject/gvaluetypes.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gobject/gvaluetypes.c b/gobject/gvaluetypes.c index 8ead3a51c..1980e9537 100644 --- a/gobject/gvaluetypes.c +++ b/gobject/gvaluetypes.c @@ -16,6 +16,11 @@ * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. */ + +/* + * MT safe + */ + #include "gvaluetypes.h" #include "gvaluecollector.h" |