diff options
| author | Garrett D'Amore <garrett@damore.org> | 2021-07-22 00:57:13 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2021-07-22 00:57:13 -0700 |
| commit | 9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9 (patch) | |
| tree | ba850aa64c8ae94f50c093edce2ae44a6e1e7b6a /src/platform/posix | |
| parent | f59f322c796ac81c2dea402d0955f6d3718c7b19 (diff) | |
| download | nng-9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9.tar.gz nng-9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9.tar.bz2 nng-9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9.zip | |
Remove extra wrapper for platform clock support.
Diffstat (limited to 'src/platform/posix')
| -rw-r--r-- | src/platform/posix/posix_clock.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/platform/posix/posix_clock.c b/src/platform/posix/posix_clock.c index 1fa05cb1..d5435009 100644 --- a/src/platform/posix/posix_clock.c +++ b/src/platform/posix/posix_clock.c @@ -1,5 +1,5 @@ // -// Copyright 2017 Garrett D'Amore <garrett@damore.org> +// Copyright 2021 Garrett D'Amore <garrett@damore.org> // Copyright 2017 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a @@ -21,7 +21,7 @@ // Use POSIX realtime stuff nni_time -nni_plat_clock(void) +nni_clock(void) { struct timespec ts; nni_time msec; @@ -38,7 +38,7 @@ nni_plat_clock(void) } void -nni_plat_sleep(nni_duration ms) +nni_msleep(nni_duration ms) { struct timespec ts; @@ -69,7 +69,7 @@ nni_plat_sleep(nni_duration ms) #include <sys/time.h> nni_time -nni_plat_clock(void) +nni_clock(void) { nni_time ms; @@ -86,7 +86,7 @@ nni_plat_clock(void) } void -nni_plat_sleep(nni_duration ms) +nni_msleep(nni_duration ms) { // So probably there is no nanosleep. We could in theory use // pthread condition variables, but that means doing memory @@ -105,12 +105,12 @@ nni_plat_sleep(nni_duration ms) pfd.fd = -1; pfd.events = 0; - now = nni_plat_clock(); // XXX: until nni_plat_clock returns ms. + now = nni_clock(); expire = now + ms; while (now < expire) { (void) poll(&pfd, 0, (int) (expire - now)); - now = nni_plat_clock(); + now = nni_clock(); } } |
