Ignore:
Timestamp:
Jun 2, 2003, 9:53:24 PM (22 years ago)
Author:
bird
Message:

#434: readv/writev crash.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/uio.h

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r274 r275  
    4444        UIO_USERISPACE          /* from user I space */
    4545};
     46/** @name tcpip40 function mappings.
     47 * @{ */
     48#define so_readv        tcpip40_readv
     49#define so_writev       tcpip40_writev
     50/* @} */
    4651#endif
    4752
    48 /** @name tcpip40 function mappings.
    49  * @{ */
    50 //@@@ name conflict - a.z. #define readv         tcpip40_readv
    51 //@@@ name conflict - a.z. #define writev        tcpip40_writev
    52 /* @} */
     53/* TCPIP versions */
     54int _System so_readv (int, __const__ struct iovec *, int);
     55int _System so_writev (int, __const__ struct iovec *, int);
    5356
    54 //@@@ name conflict - a.z. int _System readv (int, __const__ struct iovec *, int);
    55 //@@@ name conflict - a.z. int _System writev (int, __const__ struct iovec *, int);
     57/* EMX versions */
     58int readv (int, __const__ struct iovec *, int);
     59int writev (int, __const__ struct iovec *, int);
    5660
    5761#if defined (__cplusplus)
Note: See TracChangeset for help on using the changeset viewer.