summaryrefslogtreecommitdiff
path: root/src/commit.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2008-12-30 21:49:38 -0800
committerShawn O. Pearce <spearce@spearce.org>2008-12-30 21:56:11 -0800
commita1d34bc000cee6d72c3b5e329faa58424641611f (patch)
tree89d3150640c0ed5b386bc8113ac8999b20371ece /src/commit.c
parentd74679498086d0fc2293dceb59155c696b11b86c (diff)
downloadlibgit2-a1d34bc000cee6d72c3b5e329faa58424641611f.tar.gz
Support building on Mac OS X by using pthread_getspecific for TLS
The Mach-O format does not permit gcc to implement the __thread TLS specification, so we must instead emulate it using a single int cell allocated from memory and stored inside of the thread specific data associated with the current pthread. What makes this tricky is git_errno must be a valid lvalue, so we really need to return a pointer to the caller and deference it as part of the git_errno macro. The GCC-specific __attribute__((constructor)) extension is used to ensure the pthread_key_t is allocated before any Git functions are executed in the library, as this is necessary to access our thread specific storage. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'src/commit.c')
0 files changed, 0 insertions, 0 deletions