diff options
author | Werner Koch <[email protected]> | 2022-06-02 14:10:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-06-03 08:08:21 +0000 |
commit | d2d7a2b128e981740ee3a3c6e2859bec0202cb86 (patch) | |
tree | e4e8e62681ca9ae4cb678c0a9ac85d2b25ebd7a9 /agent/protect.c | |
parent | tools: Minor fix to gpg-connect-agent options. (diff) | |
download | gnupg-d2d7a2b128e981740ee3a3c6e2859bec0202cb86.tar.gz gnupg-d2d7a2b128e981740ee3a3c6e2859bec0202cb86.zip |
Remove remaining support for WindowsCE
--
Diffstat (limited to 'agent/protect.c')
-rw-r--r-- | agent/protect.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/agent/protect.c b/agent/protect.c index 30ee1345d..bc44fe107 100644 --- a/agent/protect.c +++ b/agent/protect.c @@ -122,15 +122,9 @@ static void calibrate_get_time (struct calibrate_time_s *data) { #ifdef HAVE_W32_SYSTEM -# ifdef HAVE_W32CE_SYSTEM - GetThreadTimes (GetCurrentThread (), - &data->creation_time, &data->exit_time, - &data->kernel_time, &data->user_time); -# else GetProcessTimes (GetCurrentProcess (), &data->creation_time, &data->exit_time, &data->kernel_time, &data->user_time); -# endif #elif defined (USE_CLOCK_GETTIME) struct timespec tmp; |