summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-06-06 09:27:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:10 -0500
commitc9e21d8770a6bff73cbb2554b4192cbe0a289893 (patch)
tree039b81bed5c2c5387b4961c2daf8def089699359 /source3
parentcc2b76b644d41cca71b9d7b1845faf01cf86a96a (diff)
downloadsamba-c9e21d8770a6bff73cbb2554b4192cbe0a289893.tar.gz
samba-c9e21d8770a6bff73cbb2554b4192cbe0a289893.tar.bz2
samba-c9e21d8770a6bff73cbb2554b4192cbe0a289893.zip
r23363: Activate rep_pread and rep_pwrite in lib/replace/replace.h.
This fixes the build on a SuSE 6.1. :-) I guess this had been merely forgotten. But beware: The implementations of rep_pread and rep_pwrite are not thread safe. Michael (This used to be commit 5f5b93149216eb57872e4291336685b96948681e)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/replace/replace.c8
-rw-r--r--source3/lib/replace/replace.h10
2 files changed, 18 insertions, 0 deletions
diff --git a/source3/lib/replace/replace.c b/source3/lib/replace/replace.c
index 87e73d001c..b86da53caf 100644
--- a/source3/lib/replace/replace.c
+++ b/source3/lib/replace/replace.c
@@ -438,6 +438,10 @@ char *rep_mkdtemp(char *template)
}
#endif
+/*****************************************************************
+ Watch out: this is not thread safe.
+*****************************************************************/
+
#ifndef HAVE_PREAD
ssize_t rep_pread(int __fd, void *__buf, size_t __nbytes, off_t __offset)
{
@@ -448,6 +452,10 @@ ssize_t rep_pread(int __fd, void *__buf, size_t __nbytes, off_t __offset)
}
#endif
+/*****************************************************************
+ Watch out: this is not thread safe.
+*****************************************************************/
+
#ifndef HAVE_PWRITE
ssize_t rep_pwrite(int __fd, const void *__buf, size_t __nbytes, off_t __offset)
{
diff --git a/source3/lib/replace/replace.h b/source3/lib/replace/replace.h
index f584cd42fa..62d480e20e 100644
--- a/source3/lib/replace/replace.h
+++ b/source3/lib/replace/replace.h
@@ -350,6 +350,16 @@ int rep_mkstemp(char *temp);
char *rep_mkdtemp(char *template);
#endif
+#ifndef HAVE_PREAD
+#define pread rep_pread
+ssize_t rep_pread(int __fd, void *__buf, size_t __nbytes, off_t __offset);
+#endif
+
+#ifndef HAVE_PWRITE
+#define pwrite rep_pwrite
+ssize_t rep_pwrite(int __fd, const void *__buf, size_t __nbytes, off_t __offset);
+#endif
+
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif