in reply to Re^3: Win32::SerialPort - How do I detect if device is still connected?
in thread Win32::SerialPort - How do I detect if device is still connected?

...except there isn't inter-process communication between forks on Windows because fork() creates a thread. On windows, you should probably just use perl threads instead of fork, since that API has fewer surprises.
  • Comment on Re^4: Win32::SerialPort - How do I detect if device is still connected?