summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authorsurles <surles>1998-08-03 18:25:11 (GMT)
committersurles <surles>1998-08-03 18:25:11 (GMT)
commit053ef46b521907064f999b509df13a9c6cb9b1d6 (patch)
tree6aa83048c513563ae1468a32cea5ce181d5d442d /unix/tclUnixChan.c
parent2cc40581c1216aca07b540c156b3cb9e1550fba1 (diff)
downloadtcl-053ef46b521907064f999b509df13a9c6cb9b1d6.zip
tcl-053ef46b521907064f999b509df13a9c6cb9b1d6.tar.gz
tcl-053ef46b521907064f999b509df13a9c6cb9b1d6.tar.bz2
Fixed EINTR bug
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c100
1 files changed, 100 insertions, 0 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 28e62e5..52af100 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -2571,3 +2571,103 @@ TclUnixWaitForFile(fd, mask, timeout)
}
return result;
}
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * TclOpen, etc. --
+ *
+ * Below are a bunch of procedures that are used by Tcl instead
+ * of system calls. Each of the procedures executes the
+ * corresponding system call and retries automatically
+ * if the system call was interrupted by a signal.
+ *
+ * Results:
+ * Whatever the system call would normally return.
+ *
+ * Side effects:
+ * Whatever the system call would normally do.
+ *
+ * NOTE:
+ * This should be the last page of this file, since it undefines
+ * the macros that redirect read etc. to the procedures below.
+ *
+ *----------------------------------------------------------------------
+ */
+
+#undef open
+int
+TclOpen(path, oflag, mode)
+ char *path;
+ int oflag;
+ int mode;
+{
+ int result;
+ while (1) {
+ result = open(path, oflag, mode);
+ if ((result != -1) || (errno != EINTR)) {
+ return result;
+ }
+ }
+}
+
+#undef read
+int
+TclRead(fd, buf, numBytes)
+ int fd;
+ VOID *buf;
+ size_t numBytes;
+{
+ int result;
+ while (1) {
+ result = read(fd, buf, (size_t) numBytes);
+ if ((result != -1) || (errno != EINTR)) {
+ return result;
+ }
+ }
+}
+
+#undef waitpid
+extern pid_t waitpid _ANSI_ARGS_((pid_t pid, int *stat_loc, int options));
+
+/*
+ * Note: the #ifdef below is needed to avoid compiler errors on systems
+ * that have ANSI compilers and also define pid_t to be short. The
+ * problem is a complex one having to do with argument type promotion.
+ */
+
+#ifdef _USING_PROTOTYPES_
+int
+TclWaitpid _ANSI_ARGS_((pid_t pid, int *statPtr, int options))
+#else
+int
+TclWaitpid(pid, statPtr, options)
+ pid_t pid;
+ int *statPtr;
+ int options;
+#endif /* _USING_PROTOTYPES_ */
+{
+ int result;
+ while (1) {
+ result = (int) waitpid((pid_t) pid, statPtr, options);
+ if ((result != -1) || (errno != EINTR)) {
+ return result;
+ }
+ }
+}
+
+#undef write
+int
+TclWrite(fd, buf, numBytes)
+ int fd;
+ VOID *buf;
+ size_t numBytes;
+{
+ int result;
+ while (1) {
+ result = write(fd, buf, (size_t) numBytes);
+ if ((result != -1) || (errno != EINTR)) {
+ return result;
+ }
+ }
+}