Skip to content

Commit

Permalink
recover clean_c for Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
ken4647 committed Jan 14, 2025
1 parent dbefecc commit c3a8e22
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ clean: clean_c clean_musl
rm -rf $(APP)/*.bin $(APP)/*.elf
cargo clean

clean_c::
rm -rf $(app-objs)

clean_musl:
rm -rf ulib/ruxmusl/build_*
rm -rf ulib/ruxmusl/install
Expand Down
2 changes: 1 addition & 1 deletion ulib/include/ax_pthread_cond.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Generated by ruxos_posix_api/build.rs, DO NOT edit!

typedef struct {
long __l[5];
long __l[4];
} pthread_cond_t;

4 changes: 2 additions & 2 deletions ulib/include/ax_pthread_mutex.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Generated by ruxos_posix_api/build.rs, DO NOT edit!

typedef struct {
long __l[6];
long __l[5];
} pthread_mutex_t;

#define PTHREAD_MUTEX_INITIALIZER { .__l = {0, 8, 0, 0, 0, 0}}
#define PTHREAD_MUTEX_INITIALIZER { .__l = {8, 0, 0, 0, 0}}

0 comments on commit c3a8e22

Please sign in to comment.