ANSI C fixes.
[wine] / misc / port.c
1 /*
2  * Misc. functions for systems that don't have them
3  *
4  * Copyright 1996 Alexandre Julliard
5  */
6
7 #include "config.h"
8
9 #include <stdio.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include <sys/types.h>
13 #include <sys/time.h>
14 #include <sys/stat.h>
15 #include <sys/ioctl.h>
16 #include <errno.h>
17 #include <fcntl.h>
18 #include <termios.h>
19 #ifdef HAVE_LIBIO_H
20 # include <libio.h>
21 #endif
22
23 #ifndef HAVE_USLEEP
24 #ifdef __EMX__
25 unsigned int usleep (unsigned int useconds) { DosSleep(useconds); }
26 #else
27 unsigned int usleep (unsigned int useconds)
28 {
29     struct timeval delay;
30
31     delay.tv_sec = 0;
32     delay.tv_usec = useconds;
33
34     select( 0, 0, 0, 0, &delay );
35     return 0;
36 }
37 #endif
38 #endif /* HAVE_USLEEP */
39
40 #ifndef HAVE_MEMMOVE
41 void *memmove( void *dest, const void *src, unsigned int len )
42 {
43     register char *dst = dest;
44
45     /* Use memcpy if not overlapping */
46     if ((dst + len <= (char *)src) || ((char *)src + len <= dst))
47     {
48         memcpy( dst, src, len );
49     }
50     /* Otherwise do it the hard way (FIXME: could do better than this) */
51     else if (dst < src)
52     {
53         while (len--) *dst++ = *((char *)src)++;
54     }
55     else
56     {
57         dst += len - 1;
58         src = (char *)src + len - 1;
59         while (len--) *dst-- = *((char *)src)--;
60     }
61     return dest;
62 }
63 #endif  /* HAVE_MEMMOVE */
64
65 #ifndef HAVE_STRERROR
66 const char *strerror( int err )
67 {
68     /* Let's hope we have sys_errlist then */
69     return sys_errlist[err];
70 }
71 #endif  /* HAVE_STRERROR */
72
73 #if !defined(HAVE_CLONE) && defined(__linux__)
74 #include <assert.h>
75 #include <errno.h>
76 #include <syscall.h>
77 int clone( int (*fn)(void *), void *stack, int flags, void *arg )
78 {
79 #ifdef __i386__
80     int ret;
81     void **stack_ptr = (void **)stack;
82     *--stack_ptr = arg;  /* Push argument on stack */
83     *--stack_ptr = fn;   /* Push function pointer (popped into ebx) */
84     __asm__ __volatile__( "pushl %%ebx\n\t"
85                           "movl %2,%%ebx\n\t"
86                           "int $0x80\n\t"
87                           "popl %%ebx\n\t"   /* Contains fn in the child */
88                           "testl %%eax,%%eax\n\t"
89                           "jnz 0f\n\t"
90                           "call *%%ebx\n\t"       /* Should never return */
91                           "xorl %%eax,%%eax\n\t"  /* Just in case it does*/
92                           "0:"
93                           : "=a" (ret)
94                           : "0" (SYS_clone), "r" (flags), "c" (stack_ptr) );
95     assert( ret );  /* If ret is 0, we returned from the child function */
96     if (ret > 0) return ret;
97     errno = -ret;
98     return -1;
99 #else
100     errno = EINVAL;
101     return -1;
102 #endif  /* __i386__ */
103 }
104 #endif  /* !HAVE_CLONE && __linux__ */
105
106
107 /** 
108  *  It looks like the openpty that comes with glibc in RedHat 5.0
109  *  is buggy (second call returns what looks like a dup of 0 and 1
110  *  instead of a new pty), this is a generic replacement.
111  */
112 /** We will have an autoconf check for this soon... */
113
114 int wine_openpty(int *master, int *slave, char *name, 
115                         struct termios *term, struct winsize *winsize)
116 {
117     char *ptr1, *ptr2;
118     char pts_name[512];
119
120     strcpy (pts_name, "/dev/ptyXY");
121
122     for (ptr1 = "pqrstuvwxyzPQRST"; *ptr1 != 0; ptr1++) {
123         pts_name[8] = *ptr1;
124         for (ptr2 = "0123456789abcdef"; *ptr2 != 0; ptr2++) {
125             pts_name[9] = *ptr2;
126
127             if ((*master = open(pts_name, O_RDWR)) < 0) {
128                 if (errno == ENOENT)
129                     return -1;
130                 else
131                     continue;
132             }
133             pts_name[5] = 't';
134             if ((*slave = open(pts_name, O_RDWR)) < 0) {
135                 pts_name[5] = 'p';
136                 continue;
137             }
138
139             if (term != NULL)
140                 tcsetattr(*slave, TCSANOW, term);
141             if (winsize != NULL)
142                 ioctl(*slave, TIOCSWINSZ, winsize);
143             if (name != NULL)
144                 strcpy(name, pts_name);
145             return *slave;
146         }
147     }
148     return -1;
149 }
150