Changeset 384 for trunk/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc
- Timestamp:
- Jun 29, 2012, 10:06:36 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc
r383 r384 45 45 #include <emx/startup.h> 46 46 #include <sys/socket.h> 47 #include <fcntl.h> 47 48 #include "OS_OS2.h" 48 49 #endif … … 545 546 // change this behaviour if we find pages with multiple applets that 546 547 // rely on being run in the same VM. 548 549 #ifdef __OS2__ 550 // make sure parent ends are not inherited by the child (otherwise read() on 551 // the child's side will not be aborted when the parent closes its end) 552 fcntl (in_pipe [0], F_SETFD, FD_CLOEXEC); 553 fcntl (out_pipe [0], F_SETFD, FD_CLOEXEC); 554 #endif 547 555 548 556 np_error = plugin_start_appletviewer (data);
Note:
See TracChangeset
for help on using the changeset viewer.