]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/custom/errno.c
xnu-3248.60.10.tar.gz
[apple/xnu.git] / libsyscall / custom / errno.c
index 640ed14fdcc93c58597d9986e0a5a224c397a6de..86f754a6518b12d3331a323e0ea580fa3f5a7138 100644 (file)
@@ -77,22 +77,3 @@ cerror(int err)
        _pthread_exit_if_canceled(err);
        return cerror_nocancel(err);
 }
-
-#if !TARGET_OS_EMBEDDED
-
-// Internal symbol no longer used by anybody in Libsystem but required for
-// backwards compatibility with 3rd parties <rdar://problem/14380572>
-
-void
-cthread_set_errno_self(int err, int nocancel)
-{
-       asm(".global $ld$hide$os10.9$_cthread_set_errno_self\n\t"
-               ".set $ld$hide$os10.9$_cthread_set_errno_self, _cthread_set_errno_self");
-       if (nocancel) {
-               cerror_nocancel(err);
-       } else {
-               cerror(err);
-       }
-}
-
-#endif