CeDOS - include/cedos/sched/stack_check.h

include/cedos/sched/stack_check.h (view raw)

1
2
3
4
5
6
7
8
9
10
#ifndef STACK_CHECK_H
#define STACK_CHECK_H

#include <stdint.h>

typedef uint32_t STACK_CHECKSUM;

STACK_CHECKSUM stack_check(const void *esp, const void *ebp);

#endif