mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-28 15:28:30 +00:00
Apply even more fixups
- Finish cleaning up the stdio unlocked APIs - Make __cxa_finalize() properly thread safe - Don't log locks if threads aren't being used - Add some more mutex guards to places using _mmi - Specific lock names now appear in the --ftrace logs - Fix mkdeps.com generating invalid Makefiles sometimes - Simplify and fix bugs in the test runner infrastructure - Fix issue where sometimes some functions wouldn't be logged
This commit is contained in:
parent
4ddfc47d6e
commit
8cdec62f5b
87 changed files with 955 additions and 899 deletions
2
third_party/dlmalloc/locks.inc
vendored
2
third_party/dlmalloc/locks.inc
vendored
|
@ -101,7 +101,7 @@ static dontinline int spin_acquire_lock(int *sl) {
|
|||
|
||||
#define MLOCK_T int
|
||||
#define TRY_LOCK(sl) !CAS_LOCK(sl)
|
||||
#define RELEASE_LOCK(sl) if (__threaded) CLEAR_LOCK(sl)
|
||||
#define RELEASE_LOCK(sl) (__threaded && (CLEAR_LOCK(sl), 0))
|
||||
#define ACQUIRE_LOCK(sl) (__threaded && CAS_LOCK(sl) ? spin_acquire_lock(sl) : 0)
|
||||
#define INITIAL_LOCK(sl) (*sl = 0)
|
||||
#define DESTROY_LOCK(sl) (0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue