summaryrefslogtreecommitdiff
path: root/src/include/errno.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-14 23:08:53 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-14 23:08:53 -0400
commite13063aad7aee341d278d2a879a76ec7b59b2ad8 (patch)
tree312126a3ac1514eadb3ea88d4a73703f5291c8b2 /src/include/errno.h
parentda55d4884bf26ce31cd6a64ed176019c2ba9839a (diff)
downloadmusl-e13063aad7aee341d278d2a879a76ec7b59b2ad8.tar.gz
add hidden version of &errno accessor function
this significantly improves codegen in functions that need to access errno but otherwise have no need for a GOT pointer. we could probably improve it much more by including an inline version of the &errno accessor function, but that depends on having the definitions of struct __pthread and __pthread_self(), which at present would expose a lot more than is appropriate. moving them to a small tls.h later might make this more reasonable.
Diffstat (limited to 'src/include/errno.h')
-rw-r--r--src/include/errno.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/errno.h b/src/include/errno.h
new file mode 100644
index 00000000..54a38ff4
--- /dev/null
+++ b/src/include/errno.h
@@ -0,0 +1,11 @@
+#ifndef ERRNO_H
+#define ERRNO_H
+
+#include "../../include/errno.h"
+
+hidden int *___errno_location(void);
+
+#undef errno
+#define errno (*___errno_location())
+
+#endif