Changeset 2703 in kBuild for trunk/src/lib/nt/nthlpcore.c
- Timestamp:
- Nov 21, 2013 12:26:35 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/lib/nt/nthlpcore.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/nt/nthlpcore.c
r2702 r2703 34 34 #include <errno.h> 35 35 #include "nthlp.h" 36 #if 136 #ifndef NDEBUG 37 37 # include <stdio.h> 38 38 #endif … … 223 223 return EEXIST; 224 224 /* EXDEV = 18 */ 225 case STATUS_NOT_SAME_DEVICE: 226 return EXDEV; 225 227 /* ENODEV = 19 */ 226 228 /* ENOTDIR = 20 */ … … 344 346 } 345 347 346 #if 1348 #ifndef NDEBUG 347 349 __debugbreak(); 348 350 fprintf(stderr, "rcNt=%#x (%d)\n", rcNt, rcNt); … … 410 412 case ERROR_TOO_MANY_LINKS: errno = EMLINK; break; 411 413 #endif 414 415 case ERROR_SHARING_VIOLATION: 416 errno = ETXTBSY; 417 break; 412 418 } 413 419
Note:
See TracChangeset
for help on using the changeset viewer.

