Changeset 2923
- Timestamp:
- Dec 29, 2006, 8:19:29 PM (18 years ago)
- Location:
- trunk/libc/src/kNIX/os2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/libc/src/kNIX/os2/b_dir.c ¶
r2915 r2923 40 40 static int dirWrite(__LIBC_PFH pFH, const void *pvBuf, size_t cbWrite, size_t *pcbWritten); 41 41 static int dirSetSize(__LIBC_PFH pFH, off_t cbFile, int fZero); 42 static int dirSync(__LIBC_PFH pFH); 42 43 static int dirDuplicate(__LIBC_PFH pFH, int *pfhNew); 43 44 static int dirFileControl(__LIBC_PFH pFH, int iRequest, int iArg, int *prc); 44 static int dirIOControl(__LIBC_PFH pFH, int iIOControl, int iArg, int *prc);45 static int dirIOControl(__LIBC_PFH pFH, unsigned long ulIOControl, va_list va, int *prc); 45 46 static int dirSeek(__LIBC_PFH pFH, off_t off, int iMethod, off_t *poffNew); 46 47 static int dirSelect(int cFHs, struct fd_set *pRead, struct fd_set *pWrite, struct fd_set *pExcept, struct timeval *tv, int *prc); … … 63 64 dirSeek, 64 65 dirSetSize, 66 dirSync, 65 67 dirDuplicate, 66 68 dirFileControl, … … 73 75 74 76 75 /** 76 * Close operation. 77 * 78 * @returns 0 on success. 79 * @returns OS/2 error code or negated errno on failure. 80 * @param pFH Pointer to the handle structure to operate on. 81 */ 77 /** @copydoc __LIBC_FHOPS::pfnClose */ 82 78 static int dirClose(__LIBC_PFH pFH) 83 79 { … … 108 104 109 105 110 /** 111 * Read operation. 112 * 113 * @returns 0 on success. 114 * @returns OS/2 error code or negated errno on failure. 115 * @param pFH Pointer to the handle structure to operate on. 116 * @param pvBuf Pointer to the buffer to read into. 117 * @param cbRead Number of bytes to read. 118 * @param pcbRead Where to store the count of bytes actually read. 119 */ 106 /** @copydoc __LIBC_FHOPS::pfnRead */ 120 107 static int dirRead(__LIBC_PFH pFH, void *pvBuf, size_t cbRead, size_t *pcbRead) 121 108 { … … 135 122 136 123 137 /** Write operation. 138 * @returns 0 on success. 139 * @returns OS/2 error code or negated errno on failure. 140 * @param pFH Pointer to the handle structure to operate on. 141 * @param pvBuf Pointer to the buffer which contains the data to write. 142 * @param cbWrite Number of bytes to write. 143 * @param pcbWritten Where to store the count of bytes actually written. 144 */ 124 /** @copydoc __LIBC_FHOPS::pfnWrite */ 145 125 static int dirWrite(__LIBC_PFH pFH, const void *pvBuf, size_t cbWrite, size_t *pcbWritten) 146 126 { … … 150 130 151 131 152 /** 153 * Sets the size of an open file. 154 * 155 * @returns 0 on success. 156 * @returns Negative error code (errno.h) on failure. 157 * @param pFH The file handle structure. 158 * @param cbFile The new filesize. 159 * @param fZero If set any new allocated file space should be initialized to zero. 160 */ 132 /** @copydoc __LIBC_FHOPS::pfnSetSize */ 161 133 static int dirSetSize(__LIBC_PFH pFH, off_t cbFile, int fZero) 162 134 { … … 165 137 166 138 167 /** Duplicate handle operation. 168 * @returns 0 on success, OS/2 error code on failure. 169 * @param pFH Pointer to the handle structure to operate on. 170 * @param pfhNew Where to store the duplicate filehandle. 171 * The input value describe how the handle is to be 172 * duplicated. If it's -1 a new handle is allocated. 173 * Any other value will result in that value to be 174 * used as handle. Any existing handle with that 175 * value will be closed. 176 */ 139 /** @copydoc __LIBC_FHOPS::pfnSync */ 140 static int dirSync(__LIBC_PFH pFH) 141 { 142 LIBCLOG_ENTER("pFH=%p:{.fd=%d}\n", (void *)pFH, pFH->fh); 143 LIBCLOG_RETURN_INT(0); /* fake bliss */ 144 } 145 146 147 /** @copydoc __LIBC_FHOPS::pfnDuplicate */ 177 148 static int dirDuplicate(__LIBC_PFH pFH, int *pfhNew) 178 149 { … … 182 153 183 154 184 /** File Control operation. 185 * @returns 0 on success. 186 * @returns OS/2 error code or negated errno on failure. 187 * @param pFH Pointer to the handle structure to operate on. 188 * @param iRequest Which file file descriptior request to perform. 189 * @param iArg Argument which content is specific to each 190 * iRequest operation. 191 * @param prc Where to store the value which upon success is 192 * returned to the caller. 193 */ 155 /** @copydoc __LIBC_FHOPS::pfnFileControl */ 194 156 static int dirFileControl(__LIBC_PFH pFH, int iRequest, int iArg, int *prc) 195 157 { … … 199 161 200 162 201 /** I/O Control operation. 202 * @returns 0 on success. 203 * @returns OS/2 error code or negated errno on failure. 204 * @param pFH Pointer to the handle structure to operate on. 205 * @param iIOControl Which I/O control operation to perform. 206 * @param iArg Argument which content is specific to each 207 * iIOControl operation. 208 * @param prc Where to store the value which upon success is 209 * returned to the caller. 210 */ 211 static int dirIOControl(__LIBC_PFH pFH, int iIOControl, int iArg, int *prc) 212 { 213 LIBCLOG_ENTER("pFH=%p:{.fd=%d} iIOControl=%d iArg=%d prc=%p\n", (void *)pFH, pFH->fh, iIOControl, iArg, (void *)prc); 163 /** @copydoc __LIBC_FHOPS::pfnIOControl */ 164 static int dirIOControl(__LIBC_PFH pFH, unsigned long ulIOControl, va_list va, int *prc) 165 { 166 LIBCLOG_ENTER("pFH=%p:{.fd=%d} ulIOControl=%#lx prc=%p\n", (void *)pFH, pFH->fh, ulIOControl, (void *)prc); 214 167 LIBCLOG_ERROR_RETURN_INT(-EOPNOTSUPP); 215 168 } 216 169 217 170 218 /** Seek to a new position in the 'file'. 219 * 220 * @returns 0 on success. 221 * @returns OS/2 error code or negated errno on failure. 222 * @param pFH Pointer to the handle structure to operate on. 223 * @param off The offset to seek. The meaning depends on SEEK_. 224 * @param iMethod The seek method, any of the SEEK_* macros. 225 * @param poffNew Where to store the new file offset. 226 */ 171 /** @copydoc __LIBC_FHOPS::pfnSeek */ 227 172 static int dirSeek(__LIBC_PFH pFH, off_t off, int iMethod, off_t *poffNew) 228 173 { … … 232 177 233 178 234 /** Select operation. 235 * The select operation is only performed if all handles have the same 236 * select routine (the main worker checks this). 237 * 238 * @returns 0 on success. 239 * @returns OS/2 error code or negated errno on failure. 240 * @param cFHs Range of handles to be tested. 241 * @param pRead Bitmap for file handles to wait upon to become ready for reading. 242 * @param pWrite Bitmap for file handles to wait upon to become ready for writing. 243 * @param pExcept Bitmap of file handles to wait on (error) exceptions from. 244 * @param tv Timeout value. 245 * @param prc Where to store the value which upon success is 246 * returned to the caller. 247 */ 179 /** @copydoc __LIBC_FHOPS::pfnSelect */ 248 180 static int dirSelect(int cFHs, struct fd_set *pRead, struct fd_set *pWrite, struct fd_set *pExcept, struct timeval *tv, int *prc) 249 181 { … … 254 186 255 187 256 /** Fork notification - child context. 257 * Only the __LIBC_FORK_OP_FORK_CHILD operation is forwarded atm. 258 * If NULL it's assumed that no notifiction is needed. 259 * 260 * @returns 0 on success. 261 * @returns OS/2 error code or negated errno on failure. 262 * @param pFH Pointer to the handle structure to operate on. 263 * @param pForkHandle The fork handle. 264 * @param enmOperation The fork operation. 265 */ 188 /** @copydoc __LIBC_FHOPS::pfnForkChild */ 266 189 static int dirForkChild(__LIBC_PFH pFH, __LIBC_PFORKHANDLE pForkHandle, __LIBC_FORKOP enmOperation) 267 190 { -
TabularUnified trunk/libc/src/kNIX/os2/tcpipver.c ¶
r2916 r2923 134 134 static int TCPNAME(ops_Duplicate)(__LIBC_PFH pFH, int *pfhNew); 135 135 static int TCPNAME(ops_FileControl)(__LIBC_PFH pFH, int iIOControl, int iArg, int *prc); 136 static int TCPNAME(ops_IOControl)(__LIBC_PFH pFH, int iIOControl, int iArg, int *prc);136 static int TCPNAME(ops_IOControl)(__LIBC_PFH pFH, unsigned long ulIOControl, va_list va, int *prc); 137 137 static int TCPNAME(ops_Select)(int cFHs, struct fd_set *pRead, struct fd_set *pWrite, struct fd_set *pExcept, struct timeval *tv, int *prc); 138 138 static int TCPNAME(ops_ForkChild)(struct __libc_FileHandle *pFH, __LIBC_PFORKHANDLE pForkHandle, __LIBC_FORKOP enmOperation); … … 176 176 TCPNAME(ops_Read), 177 177 TCPNAME(ops_Write), 178 NULL /* fixme! */, 178 179 NULL /* fixme! */, 179 180 NULL /* fixme! */, … … 434 435 435 436 436 /** I/O Control operation. 437 * @returns 0 on success. 438 * @returns OS/2 error code or negated errno on failure. 439 * @param pFH Pointer to the handle structure to operate on. 440 * @param fh It's associated filehandle. 441 * @param iIOControl Which I/O control operation to perform. 442 * @param iArg Argument which content is specific to each 443 * iIOControl operation. 444 * @param prc Where to store the value which upon success is 445 * returned to the caller. 446 */ 447 static int TCPNAME(ops_IOControl)(__LIBC_PFH pFH, int iIOControl, int iArg, int *prc) 448 { 449 LIBCLOG_ENTER("pFH=%p:{.iSocket=%d .fh=%d} iIOControl=%#x iArg=%#x prc=%p\n", 450 (void *)pFH, ((PLIBCSOCKETFH)pFH)->iSocket, pFH->fh, iIOControl, iArg, (void *)prc); 437 /** @copydoc __LIBC_FHOPS::pfnIOControl */ 438 static int TCPNAME(ops_IOControl)(__LIBC_PFH pFH, unsigned long ulIOControl, va_list va, int *prc) 439 { 440 LIBCLOG_ENTER("pFH=%p:{.iSocket=%d .fh=%d} ulIOControl=%#lx prc=%p\n", 441 (void *)pFH, ((PLIBCSOCKETFH)pFH)->iSocket, pFH->fh, ulIOControl, (void *)prc); 451 442 PLIBCSOCKETFH pSocketFH = (PLIBCSOCKETFH)pFH; 452 char *pchArg = (char *)iArg;443 char *pchArg = va_arg(va, char *); 453 444 int rc; 454 445 #ifndef TCPV40HDRS 455 switch (__IOCLW( iIOControl))446 switch (__IOCLW(ulIOControl)) 456 447 { 457 448 case __IOCLW(SIOSTATARP): … … 492 483 493 484 default: 494 rc = TCPNAME(imp_ioctl)(pSocketFH->iSocket, iIOControl, pchArg);485 rc = TCPNAME(imp_ioctl)(pSocketFH->iSocket, ulIOControl, pchArg); 495 486 break; 496 487 } … … 503 494 * must determin. :-/ 504 495 */ 505 switch (__IOCLW( iIOControl))496 switch (__IOCLW(ulIOControl)) 506 497 { 507 498 case __IOCLW(FIONREAD): … … 703 694 if (cb >= 0) 704 695 { 705 switch (__IOCLW( iIOControl))696 switch (__IOCLW(ulIOControl)) 706 697 { 707 698 case FIONBIO: 708 rc = TCPNAME(imp_os2_ioctl)(pSocketFH->iSocket, iIOControl, pchArg, cb);699 rc = TCPNAME(imp_os2_ioctl)(pSocketFH->iSocket, ulIOControl, pchArg, cb); 709 700 if (rc) 710 701 { … … 717 708 718 709 default: 719 rc = TCPNAME(imp_os2_ioctl)(pSocketFH->iSocket, iIOControl, pchArg, cb);710 rc = TCPNAME(imp_os2_ioctl)(pSocketFH->iSocket, ulIOControl, pchArg, cb); 720 711 break; 721 712 }
Note:
See TracChangeset
for help on using the changeset viewer.