| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Refactor out signed/unsigned comparisons. | Jason Evans | 2016-03-15 | 1 | -3/+2 |
| | | |||||
| * | Refactor time_* into nstime_*. | Jason Evans | 2016-02-22 | 1 | -8/+8 |
| | | | | | | | | Use a single uint64_t in nstime_t to store nanoseconds rather than using struct timespec. This reduces fragility around conversions between long and uint64_t, especially missing casts that only cause problems on 32-bit platforms. | ||||
| * | Flesh out time_*() API. | Jason Evans | 2016-02-20 | 1 | -32/+8 |
| | | |||||
| * | Fix MinGW-related portability issues. | Jason Evans | 2015-07-23 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Create and use FMT* macros that are equivalent to the PRI* macros that inttypes.h defines. This allows uniform use of the Unix-specific format specifiers, e.g. "%zu", as well as avoiding Windows-specific definitions of e.g. PRIu64. Add ffs()/ffsl() support for compiling with gcc. Extract compatibility definitions of ENOENT, EINVAL, EAGAIN, EPERM, ENOMEM, and ENORANGE into include/msvc_compat/windows_extra.h and use the file for tests as well as for core jemalloc code. | ||||
| * | Add timer support for Windows. | Jason Evans | 2015-07-13 | 1 | -7/+18 |
| | | |||||
| * | use CLOCK_MONOTONIC in the timer if it's available | Daniel Micay | 2015-03-13 | 1 | -0/+17 |
| | | | | | | | Linux sets _POSIX_MONOTONIC_CLOCK to 0 meaning it *might* be available, so a sysconf check is necessary at runtime with a fallback to the mandatory CLOCK_REALTIME clock. | ||||
| * | avoid conflict with the POSIX timer_t type | Daniel Micay | 2014-09-08 | 1 | -4/+4 |
| | | | | | It hits a compilation error with glibc 2.19 without a rename. | ||||
| * | Add a simple timer implementation for use in benchmarking. | Jason Evans | 2014-09-08 | 1 | -0/+57 |
