Skip to content

Commit 046de0c

Browse files
committed
Build: Fix include header files.
1 parent e6c85f0 commit 046de0c

14 files changed

+29
-29
lines changed

src/kern/core/hev-task-system-private.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
#include <setjmp.h>
1414

15-
#include "hev-task.h"
16-
#include "hev-task-private.h"
1715
#include "hev-task-system.h"
18-
#include "hev-task-timer-manager.h"
19-
#include "hev-rbtree-cached.h"
16+
#include "kern/task/hev-task.h"
17+
#include "kern/task/hev-task-private.h"
18+
#include "kern/time/hev-task-timer-manager.h"
19+
#include "lib/rbtree/hev-rbtree-cached.h"
2020

2121
#define HEV_TASK_RUN_SCHEDULER HEV_TASK_YIELD_COUNT
2222
#define PRIORITY_COUNT (HEV_TASK_PRIORITY_MAX - HEV_TASK_PRIORITY_MIN + 1)

src/kern/core/hev-task-system-schedule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
#include "hev-task-system.h"
1919
#include "hev-task-system-private.h"
20-
#include "hev-task-private.h"
21-
#include "hev-task-executer.h"
20+
#include "kern/task/hev-task-private.h"
21+
#include "kern/task/hev-task-executer.h"
2222

2323
static inline void
2424
hev_task_system_wakeup_task_with_context (HevTaskSystemContext *ctx,

src/kern/core/hev-task-system.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
#include "hev-task-system.h"
2020
#include "hev-task-system-private.h"
21-
#include "hev-memory-allocator-api.h"
22-
#include "hev-memory-allocator-slice.h"
21+
#include "mm/api/hev-memory-allocator-api.h"
22+
#include "mm/slice/hev-memory-allocator-slice.h"
2323

2424
#ifdef ENABLE_PTHREAD
2525
static pthread_key_t key;

src/kern/task/hev-task-execute.S

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,35 @@
99

1010
#if defined(__i386__)
1111

12-
# include "hev-task-execute-x86.s"
12+
# include "arch/x86/hev-task-execute-x86.s"
1313

1414
#elif defined(__x86_64__)
1515

16-
# include "hev-task-execute-x86_64.s"
16+
# include "arch/x86/hev-task-execute-x86_64.s"
1717

1818
#elif defined(__mips__)
1919

2020
# if (_MIPS_SIM == _ABI64)
21-
# include "hev-task-execute-mips64.s"
21+
# include "arch/mips/hev-task-execute-mips64.s"
2222
# else
23-
# include "hev-task-execute-mips32.s"
23+
# include "arch/mips/hev-task-execute-mips32.s"
2424
# endif
2525

2626
#elif defined(__arm__)
2727

28-
# include "hev-task-execute-arm.s"
28+
# include "arch/arm/hev-task-execute-arm.s"
2929

3030
#elif defined(__aarch64__)
3131

32-
# include "hev-task-execute-aarch64.s"
32+
# include "arch/arm/hev-task-execute-aarch64.s"
3333

3434
#elif defined(__sw_64__)
3535

36-
# include "hev-task-execute-sw64.s"
36+
# include "arch/sw64/hev-task-execute-sw64.s"
3737

3838
#elif defined(__riscv) && defined(_LP64)
3939

40-
# include "hev-task-execute-riscv64.s"
40+
# include "arch/riscv/hev-task-execute-riscv64.s"
4141

4242
#else
4343

src/kern/task/hev-task-executer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
#include "hev-task-executer.h"
11-
#include "hev-task-system-private.h"
11+
#include "kern/core/hev-task-system-private.h"
1212

1313
void
1414
hev_task_executer (HevTask *task)

src/kern/task/hev-task-private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <setjmp.h>
1515

1616
#include "hev-task.h"
17-
#include "hev-rbtree.h"
17+
#include "lib/rbtree/hev-rbtree.h"
1818

1919
typedef struct _HevTaskSchedEntity HevTaskSchedEntity;
2020

src/kern/task/hev-task.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
#include "hev-task.h"
1919
#include "hev-task-private.h"
20-
#include "hev-task-system-private.h"
21-
#include "hev-memory-allocator-api.h"
20+
#include "kern/core/hev-task-system-private.h"
21+
#include "mm/api/hev-memory-allocator-api.h"
2222

2323
#define STACK_OVERFLOW_DETECTION_TAG (0xdeadbeefu)
2424

src/kern/time/hev-task-timer-manager.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
#include <sys/timerfd.h>
1313

1414
#include "hev-task-timer-manager.h"
15-
#include "hev-task-private.h"
16-
#include "hev-task-system-private.h"
17-
#include "hev-memory-allocator-api.h"
15+
#include "kern/task/hev-task-private.h"
16+
#include "kern/core/hev-task-system-private.h"
17+
#include "mm/api/hev-memory-allocator-api.h"
1818

1919
#define MAX_CACHED_TIMER_COUNT CONFIG_TASK_TIMER_MAX_COUNT
2020

src/kern/time/hev-task-timer-manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef __HEV_TASK_TIMER_MANAGER_H__
1111
#define __HEV_TASK_TIMER_MANAGER_H__
1212

13-
#include "hev-task.h"
13+
#include "kern/task/hev-task.h"
1414

1515
typedef struct _HevTaskTimer HevTaskTimer;
1616
typedef struct _HevTaskTimerManager HevTaskTimerManager;

src/lib/io/poll/hev-task-poll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
#include "hev-task-poll.h"
11-
#include "hev-task.h"
11+
#include "kern/task/hev-task.h"
1212

1313
int
1414
hev_task_poll (HevTaskPollFD fds[], unsigned int nfds, int timeout)

0 commit comments

Comments
 (0)