fix "redefinition of typedef 'k_task_t'"

1. remove re-typedef of k_task_st to k_task_t in tos_task.h
2. add "typedef struct k_task_st k_task_t" to tos_ktypes.h
This commit is contained in:
daishengdong
2020-03-12 11:04:17 +08:00
parent 6d0c6d3721
commit 441f57c837
4 changed files with 22 additions and 22 deletions

View File

@@ -17,7 +17,7 @@ typedef struct vfs_char_device_operations_st {
int (*resume) (void);
} vfs_chrdev_ops_t;
typedef struct vfs_block_device_geometry_t {
typedef struct vfs_block_device_geometry_st {
int is_available;
uint32_t sector_size;
uint32_t nsectors;