diff options
author | Werner Koch <[email protected]> | 2004-12-15 14:15:54 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-12-15 14:15:54 +0000 |
commit | 69967b04125e53811182a01d2700984469117339 (patch) | |
tree | 3034ccf72b4bb558187f3e1d435a92ec193e093c /scd/command.c | |
parent | Yep. No lost threads anymore. (diff) | |
download | gnupg-69967b04125e53811182a01d2700984469117339.tar.gz gnupg-69967b04125e53811182a01d2700984469117339.zip |
A whole bunch of changes to allow building for W32.
Diffstat (limited to '')
-rw-r--r-- | scd/command.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scd/command.c b/scd/command.c index 6fa100ff9..b99fffc09 100644 --- a/scd/command.c +++ b/scd/command.c @@ -1260,8 +1260,13 @@ scd_update_reader_status_file (void) int signo = primary_connection->server_local->event_signal; log_info ("client pid is %d, sending signal %d\n", pid, signo); + +#ifdef HAVE_W32_SYSTEM +#warning Need to implement a notification service +#else if (pid != (pid_t)(-1) && pid && signo > 0) kill (pid, signo); +#endif } } } |