Peter: kill {} und $SIG{} unter WinXP / Win98

Hi,

zwei kurze Fragen an die Experten:

1. funktioniert das kill {} unter Window XP bzw. Win98 ?
2. arbeitet das $SIG {} nur auf Linux ?

Gruß

  • Peter
  1. Hi,

    zwei kurze Fragen an die Experten:

    1. funktioniert das kill {} unter Window XP bzw. Win98 ?

    Siehe unten.

    1. arbeitet das $SIG {} nur auf Linux ?

    Noe. Natuerlich auch unter Unix-Derivaten.

    Fuer Windoof gilt:
    http://aspn.activestate.com//ASPN/Reference/Products/ActivePerl/lib/Pod/perlwin32.html#building extensions

    Most socket() related calls are supported, but they may not behave as on Unix platforms. See the perlport manpage for the full list.

    Signal handling may not behave as on Unix platforms (where it doesn't exactly ``behave'', either :). For instance, calling die() or exit() from signal handlers will cause an exception, since most implementations of signal() on Win32 are severely crippled. Thus, signals may work only for simple things like setting a flag variable in the handler. Using signals under this port should currently be considered unsupported.

    Ciao,
     WOlfgang