This commit is contained in:
purplerain 2023-06-27 17:33:20 +00:00
parent 3751effe59
commit 29ec20d7b2
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
33 changed files with 213 additions and 288 deletions

View file

@ -1,4 +1,4 @@
/* $OpenBSD: profile.h,v 1.5 2021/09/04 22:15:33 bluhm Exp $ */
/* $OpenBSD: profile.h,v 1.6 2023/06/27 10:11:15 cheloha Exp $ */
/* $NetBSD: profile.h,v 1.3 2003/11/28 23:22:45 fvdl Exp $ */
/*
@ -72,6 +72,6 @@ __asm(" .globl __mcount \n" \
#ifdef _KERNEL
#define MCOUNT_ENTER (void)&s; __asm__("cli");
#define MCOUNT_EXIT __asm__("sti");
#define MCOUNT_ENTER s = intr_disable()
#define MCOUNT_EXIT intr_restore(s)
#endif /* _KERNEL */