Use "int3" for debug interrupt

This commit is contained in:
Alex
2023-03-06 02:05:14 +02:00
parent 7511ccf644
commit b17f3449ba

View File

@ -310,10 +310,10 @@ typedef intptr_t ssize_t;
: \
: "memory")
#define int3 \
__asm__ __volatile__("int $0x3" \
: \
: \
#define int3 \
__asm__ __volatile__("int3" \
: \
: \
: "memory")
#endif // !__FENNIX_KERNEL_TYPES_H__