diff options
| author | Paul Eggert | 2013-08-27 11:47:55 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-27 11:47:55 -0700 |
| commit | 43aac990c339c0fc3304aa476ebc8ea8467f107e (patch) | |
| tree | 24f6477d7ec79c7f3529e08c421f309b1180c436 /lib-src/profile.c | |
| parent | 278208b8e6917af1e7e2623a3869614fa70059ed (diff) | |
| download | emacs-43aac990c339c0fc3304aa476ebc8ea8467f107e.tar.gz emacs-43aac990c339c0fc3304aa476ebc8ea8467f107e.zip | |
Simplify EMACS_TIME-related code.
This portability layer is no longer needed, since Emacs has been
using struct timespec as a portability layer for some time.
Merge from gnulib, incorporating:
2013-08-27 timespec: new convenience constants and function
* src/atimer.h, src/buffer.h, src/dispextern.h, src/xgselect.h:
Include <time.h> rather than "systime.h"; that's all that's needed now.
* src/dispnew.c: Include <timespec.h> rather than "systime.h";
that's all that's needed now.
* src/systime.h (EMACS_TIME): Remove. All uses changed to struct timespec.
(EMACS_TIME_RESOLUTION): Remove. All uses changed to
TIMESPEC_RESOLUTION.
(LOG10_EMACS_TIME_RESOLUTION): Remove. All uses changed to
LOG10_TIMESPEC_RESOLUTION.
(EMACS_SECS, emacs_secs_addr): Remove. All uses changed to tv_sec.
(EMACS_NSECS): Remove. All uses changed to tv_nsec.
(make_emacs_time): Remove. All used changed to make_timespec.
(invalid_timespec): Rename from invalid_emacs_time. All uses changed.
(current_timespec): Rename from current_emacs_time. All uses changed.
(add_emacs_time): Remove. All uses changed to timespec_add.
(sub_emacs_time): Remove. All uses change dot timespec_sub.
(EMACS_TIME_SIGN): Remove. All uses changed to timespec_sign.
(timespec_valid_p): Rename from EMACS_TIME_VALID_P. All uses changed.
(EMACS_TIME_FROM_DOUBLE): Remove. All uses changed to dtotimespec.
(EMACS_TIME_TO_DOUBLE): Remove. All uses changed to timespectod.
(current_timespec): Rename from current_emacs_time. All uses changed.
(EMACS_TIME_EQ, EMACS_TIME_LT, EMACS_TIME_LE): Remove. All uses
changed to timespec_cmp.
* src/xgselect.c: Include <timespec.h>, since our .h files don't.
Diffstat (limited to 'lib-src/profile.c')
| -rw-r--r-- | lib-src/profile.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/profile.c b/lib-src/profile.c index ab17b52ca28..bddfea76334 100644 --- a/lib-src/profile.c +++ b/lib-src/profile.c | |||
| @@ -39,17 +39,17 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 39 | #include <intprops.h> | 39 | #include <intprops.h> |
| 40 | #include <systime.h> | 40 | #include <systime.h> |
| 41 | 41 | ||
| 42 | static EMACS_TIME TV1; | 42 | static struct timespec TV1; |
| 43 | static int watch_not_started = 1; /* flag */ | 43 | static int watch_not_started = 1; /* flag */ |
| 44 | static char time_string[INT_STRLEN_BOUND (uintmax_t) + sizeof "." | 44 | static char time_string[INT_STRLEN_BOUND (uintmax_t) + sizeof "." |
| 45 | + LOG10_EMACS_TIME_RESOLUTION]; | 45 | + LOG10_TIMESPEC_RESOLUTION]; |
| 46 | 46 | ||
| 47 | /* Reset the stopwatch to zero. */ | 47 | /* Reset the stopwatch to zero. */ |
| 48 | 48 | ||
| 49 | static void | 49 | static void |
| 50 | reset_watch (void) | 50 | reset_watch (void) |
| 51 | { | 51 | { |
| 52 | TV1 = current_emacs_time (); | 52 | TV1 = current_timespec (); |
| 53 | watch_not_started = 0; | 53 | watch_not_started = 0; |
| 54 | } | 54 | } |
| 55 | 55 | ||
| @@ -60,12 +60,12 @@ reset_watch (void) | |||
| 60 | static char * | 60 | static char * |
| 61 | get_time (void) | 61 | get_time (void) |
| 62 | { | 62 | { |
| 63 | EMACS_TIME TV2 = sub_emacs_time (current_emacs_time (), TV1); | 63 | struct timespec TV2 = timespec_sub (current_timespec (), TV1); |
| 64 | uintmax_t s = EMACS_SECS (TV2); | 64 | uintmax_t s = TV2.tv_sec; |
| 65 | int ns = EMACS_NSECS (TV2); | 65 | int ns = TV2.tv_nsec; |
| 66 | if (watch_not_started) | 66 | if (watch_not_started) |
| 67 | exit (EXIT_FAILURE); /* call reset_watch first ! */ | 67 | exit (EXIT_FAILURE); /* call reset_watch first ! */ |
| 68 | sprintf (time_string, "%"PRIuMAX".%0*d", s, LOG10_EMACS_TIME_RESOLUTION, ns); | 68 | sprintf (time_string, "%"PRIuMAX".%0*d", s, LOG10_TIMESPEC_RESOLUTION, ns); |
| 69 | return time_string; | 69 | return time_string; |
| 70 | } | 70 | } |
| 71 | 71 | ||