aboutsummaryrefslogtreecommitdiff
path: root/libmudflap
diff options
context:
space:
mode:
authorJim Wilson <wilson@specifixinc.com>2005-08-23 00:12:18 +0000
committerJim Wilson <wilson@specifixinc.com>2005-08-23 00:12:18 +0000
commita25d95b653be6ed3aa21d88e202a56699f7ab0de (patch)
tree9650a50ab833e33e6188d4b9b6557bf2d27fabea /libmudflap
parentb0598622c201c9ef33519c95295405a0db8752ca (diff)
Fix FreeBSD fopen instrumentation.
* mf-hooks2.c (MF_REGISTER_fopen): Define to __MF_TYPE_STATIC when __FreeBSD__ is defined. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@103368 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libmudflap')
-rw-r--r--libmudflap/ChangeLog5
-rw-r--r--libmudflap/mf-hooks2.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/libmudflap/ChangeLog b/libmudflap/ChangeLog
index 717be4f7be6..cae17d89a76 100644
--- a/libmudflap/ChangeLog
+++ b/libmudflap/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-22 Jim Wilson <wilson@specifix.com>
+
+ * mf-hooks2.c (MF_REGISTER_fopen): Define to __MF_TYPE_STATIC when
+ __FreeBSD__ is defined.
+
2005-08-17 Jim Wilson <wilson@specifix.com>
* mf-hooks1.c (malloc, calloc, realloc, free,
diff --git a/libmudflap/mf-hooks2.c b/libmudflap/mf-hooks2.c
index 2b961b47a13..0ffcf09ac1f 100644
--- a/libmudflap/mf-hooks2.c
+++ b/libmudflap/mf-hooks2.c
@@ -544,8 +544,14 @@ WRAPPER2(struct tm*, gmtime, const time_t *timep)
/* The following indicate if the result of the corresponding function
* should be explicitly un/registered by the wrapper
*/
+
+#ifdef __FreeBSD__
+#define MF_REGISTER_fopen __MF_TYPE_STATIC
+#else
#undef MF_REGISTER_fopen
+#endif
#define MF_RESULT_SIZE_fopen (sizeof (FILE))
+
#undef MF_REGISTER_opendir
#define MF_RESULT_SIZE_opendir 0 /* (sizeof (DIR)) */
#undef MF_REGISTER_readdir