diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-11 11:57:31 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:34 -0400 |
commit | b6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 (patch) | |
tree | 80f65cea882a2e729066620956758bf38d9a4fce /src/signal/s390x | |
parent | 50fea6c75f7bb610eb33bc676224e8fbd2329338 (diff) | |
download | musl-b6e59cd925cbe6c0f23cf46828d47e6e7edd17c9.tar.gz musl-b6e59cd925cbe6c0f23cf46828d47e6e7edd17c9.tar.xz musl-b6e59cd925cbe6c0f23cf46828d47e6e7edd17c9.zip |
apply hidden visibility to sigreturn code fragments
these were overlooked in the declarations overhaul work because they are not properly declared, and the current framework even allows their declared types to vary by arch. at some point this should be cleaned up, but I'm not sure what the right way would be.
Diffstat (limited to 'src/signal/s390x')
-rw-r--r-- | src/signal/s390x/restore.s | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/signal/s390x/restore.s b/src/signal/s390x/restore.s index 79beb68f..88e33dbc 100644 --- a/src/signal/s390x/restore.s +++ b/src/signal/s390x/restore.s @@ -1,9 +1,11 @@ .global __restore + .hidden __restore .type __restore,%function __restore: svc 119 #__NR_sigreturn .global __restore_rt + .hidden __restore_rt .type __restore_rt,%function __restore_rt: svc 173 # __NR_rt_sigreturn |