Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace tabs following #define with spaces. | Jason Evans | 2017-01-21 | 1 | -1/+1 |
| | | | | This resolves #564. | ||||
* | Remove extraneous parens around return arguments. | Jason Evans | 2017-01-21 | 1 | -8/+8 |
| | | | | This resolves #540. | ||||
* | Update brace style. | Jason Evans | 2017-01-21 | 1 | -10/+10 |
| | | | | | | | Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537. | ||||
* | Remove leading blank lines from function bodies. | Jason Evans | 2017-01-13 | 1 | -1/+0 |
| | | | | This resolves #535. | ||||
* | Remove errno overrides. | Dmitri Smirnov | 2016-05-03 | 1 | -21/+1 |
| | |||||
* | Fix Windows build issues | Dmitri Smirnov | 2016-02-24 | 1 | -0/+30 |
| | | | | This resolves #333. | ||||
* | Fix Windows-specific prof-related compilation portability issues. | Jason Evans | 2016-02-21 | 1 | -2/+0 |
| | |||||
* | getpid() fix for Win32 | rustyx | 2016-02-20 | 1 | -0/+2 |
| | |||||
* | Fix MinGW-related portability issues. | Jason Evans | 2015-07-23 | 3 | -315/+34 |
| | | | | | | | | | | | | | 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. | ||||
* | Allow to build with clang-cl | Mike Hommey | 2014-06-12 | 1 | -0/+4 |
| | |||||
* | Don't use msvc_compat's C99 headers with MSVC versions that have (some) C99 ↵ | Mike Hommey | 2014-06-02 | 3 | -0/+0 |
| | | | | support | ||||
* | Use "standard" printf prefixes instead of MSVC ones in inttypes.h | Mike Hommey | 2012-05-02 | 1 | -51/+59 |
| | | | | | We don't use MSVC's printf, but ours, and it doesn't support the I32 and I64 prefixes. | ||||
* | Add support for MSVC | Mike Hommey | 2012-05-01 | 4 | -0/+591 |
Tested with MSVC 8 32 and 64 bits. |