Differences From Artifact [3d6d32a7c0]:
- File kio/send.fn.c — part of check-in [f85e6a07dd] at 2019-08-20 22:54:49 on branch trunk — reorganize posix assembly code (user: lexi, size: 1890) [annotate] [blame] [check-ins using]
To Artifact [1b46213bbd]:
- File kio/send.fn.c — part of check-in [cef83f0167] at 2019-08-21 00:16:00 on branch trunk — switch ansi "bold off" code to "reset" for terminals that interpret "bold off" as "double underline"; remove (incorrect) test code from kiosend (user: lexi, size: 1802) [annotate] [blame] [check-ins using]
- File mod/kio/send.fn.c — part of check-in [14172a910a] at 2019-08-21 06:00:24 on branch trunk — move modules to a subdirectory in order to keep the directory tree organized and make room for OS-specific build files (user: lexi, size: 1802) [annotate] [blame] [check-ins using]
38 38 case k_platform_error_EAGAIN: return kiocond_poll; 39 39 case k_platform_error_EFBIG: return kiocond_fail_too_big; 40 40 case k_platform_error_EINTR: return kiocond_interrupt; 41 41 case k_platform_error_EDESTADDRREQ: return kiocond_fail_no_peer; 42 42 default: return kiocond_fail; 43 43 } 44 44 # else 45 -# if KVos == win 46 -# error windows IO send function not yet defined 47 -# else 48 - Knoimpl(kiosend,KVos); 49 -# error missing implementation // boring error for plebs 50 -# endif 45 + Knoimpl(kiosend,KVos); 46 +# error missing implementation // boring error for plebs 51 47 # endif 52 48 53 49 if (len != null) *len = size; 54 50 return kiocond_ok; 55 51 }