--- pth.pod 2000/10/03 09:26:47 1.143
+++ pth.pod 2001/03/24 13:49:06 1.144
@@ -2137,9 +2137,10 @@
This variant is available on all platforms and can I<always> be enabled by
building B<Pth> with C<--enable-syscall-soft>. This then triggers some
C<#define>'s in the C<pth.h> header which map for instance read(3) to
-pth_read(3), etc. Currently the following functions are mapped: fork(2),
+pth_read(3), etc. Currently the following functions are mapped: fork(2),
sleep(3), sigwait(3), waitpid(2), system(3), select(2), poll(2),
-connect(2), accept(2), read(2), write(2).
+connect(2), accept(2), read(2), write(2), recv(2), send(2), recvfrom(2),
+sendto(2).
The drawback of this approach is just that really all source files
of the application where these function calls occur have to include
|