This commit is contained in:
2026-05-19 11:49:22 +08:00
commit add7af4222
96 changed files with 8635 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef INCLUDED_OS_STACK_H
#define INCLUDED_OS_STACK_H
#ifndef INCLUDED_OS_TYPES_H
#include <os_types.h>
#endif /*INCLUDED_OS_TYPES_H*/
/* ------------------------------------------------------------------------------------------------------------------ */
/* */
typedef enum{
kOsStackType_MinToMax,
kOsStackType_MaxToMin,
}os_stack_type_t;
typedef struct {
void* sp;
os_uintptr_t min;
os_uintptr_t max;
os_stack_type_t type;
}os_stack_t;
#endif /*INCLUDED_OS_STACK_H*/