mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-07 11:48:30 +00:00
Remove _Hide keyword
It never did anything and isn't worthwhile as documentation.
This commit is contained in:
parent
4fb6cbc1fe
commit
e0c2b91b3e
131 changed files with 716 additions and 917 deletions
|
@ -87,18 +87,18 @@ typedef void (*atfork_f)(void);
|
|||
|
||||
extern struct Dll *_pthread_list;
|
||||
extern pthread_spinlock_t _pthread_lock;
|
||||
extern _Atomic(pthread_key_dtor) _pthread_key_dtor[PTHREAD_KEYS_MAX] _Hide;
|
||||
extern _Atomic(pthread_key_dtor) _pthread_key_dtor[PTHREAD_KEYS_MAX];
|
||||
|
||||
int _pthread_atfork(atfork_f, atfork_f, atfork_f) _Hide;
|
||||
int _pthread_reschedule(struct PosixThread *) _Hide;
|
||||
int _pthread_setschedparam_freebsd(int, int, const struct sched_param *) _Hide;
|
||||
void _pthread_zombify(struct PosixThread *) _Hide;
|
||||
void _pthread_free(struct PosixThread *) _Hide;
|
||||
void _pthread_onfork_prepare(void) _Hide;
|
||||
void _pthread_onfork_parent(void) _Hide;
|
||||
void _pthread_onfork_child(void) _Hide;
|
||||
void _pthread_ungarbage(void) _Hide;
|
||||
int _pthread_cancel_sys(void) _Hide;
|
||||
int _pthread_atfork(atfork_f, atfork_f, atfork_f);
|
||||
int _pthread_reschedule(struct PosixThread *);
|
||||
int _pthread_setschedparam_freebsd(int, int, const struct sched_param *);
|
||||
void _pthread_zombify(struct PosixThread *);
|
||||
void _pthread_free(struct PosixThread *);
|
||||
void _pthread_onfork_prepare(void);
|
||||
void _pthread_onfork_parent(void);
|
||||
void _pthread_onfork_child(void);
|
||||
void _pthread_ungarbage(void);
|
||||
int _pthread_cancel_sys(void);
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
|
|
@ -11,9 +11,9 @@ struct spawn {
|
|||
struct CosmoTib *tib;
|
||||
};
|
||||
|
||||
int _spawn(int (*)(void *, int), void *, struct spawn *) _Hide;
|
||||
int _join(struct spawn *) _Hide;
|
||||
char *_mktls(struct CosmoTib **) _Hide;
|
||||
int _spawn(int (*)(void *, int), void *, struct spawn *);
|
||||
int _join(struct spawn *);
|
||||
char *_mktls(struct CosmoTib **);
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
errno_t _wait0(const atomic_int *, struct timespec *) _Hide;
|
||||
errno_t _wait0(const atomic_int *, struct timespec *);
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue