time: Make realitexpire() local to kern_time.c

MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2022-07-13 09:57:28 -04:00
parent 38e1d32dab
commit ef221ff645
2 changed files with 3 additions and 3 deletions

View File

@ -108,6 +108,8 @@ static void realtimer_clocktime(clockid_t, struct timespec *);
static void realtimer_expire(void *);
static void realtimer_expire_l(struct itimer *it, bool proc_locked);
static void realitexpire(void *arg);
static int register_posix_clock(int, const struct kclock *);
static void itimer_fire(struct itimer *it);
static int itimespecfix(struct timespec *ts);
@ -938,7 +940,7 @@ itimer_proc_continue(struct proc *p)
* that here since we want to appear to be in sync with the clock
* interrupt even when we're delayed.
*/
void
static void
realitexpire(void *arg)
{
struct proc *p;

View File

@ -360,8 +360,6 @@ int SAN_INTERCEPTOR(casueword)(volatile u_long *p, u_long oldval,
#endif /* !SAN_RUNTIME */
#endif /* SAN_NEEDS_INTERCEPTORS && !KCSAN */
void realitexpire(void *);
int sysbeep(int hertz, sbintime_t duration);
void hardclock(int cnt, int usermode);