You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/libc/posix-info.txt
+6-9Lines changed: 6 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,7 @@
16
16
+ tolower()
17
17
+ toupper()
18
18
19
-
<errno.h> -> for gcc, keil, iar platform at the same time;
20
-
Suggest to choose <sys/errno.h>
19
+
<errno.h> -> Suggesting to use <sys/errno.h> instead of <errno.h> to be compatible with three compilation platforms of IAR Keil GCC at the same time.
21
20
+ errno
22
21
23
22
<fcntl.h>
@@ -138,8 +137,7 @@
138
137
+ longjmp()
139
138
+ setjmp()
140
139
141
-
<signal.h> -> for gcc, keil, iar platform at the same time;
142
-
Suggest to choose <sys/signal.h>
140
+
<signal.h> -> Suggesting to use <sys/signal.h> instead of <signal.h> to be compatible with three compilation platforms of IAR Keil GCC at the same time.
143
141
+ kill()
144
142
+ pthread_kill()
145
143
+ pthread_sigmask()
@@ -174,7 +172,7 @@
174
172
+ fflush()
175
173
+ fgetc()
176
174
+ fgets()
177
-
- fileno()
175
+
+ fileno() ; GCC and IAR support, but Keil doesn't support
178
176
- flockfile()
179
177
+ fopen()
180
178
+ fprintf()
@@ -285,8 +283,7 @@
285
283
<sys/utsname.h>
286
284
+ uname()
287
285
288
-
<time.h> -> for gcc, keil, iar platform at the same time;
289
-
Suggest to choose <sys/time.h>
286
+
<time.h> -> Suggesting to use <sys/time.h> instead of <time.h> to be compatible with three compilation platforms of IAR Keil GCC at the same time.
290
287
+ asctime()
291
288
+ asctime_r()
292
289
+ clock_getres()
@@ -309,8 +306,8 @@
309
306
+ timer_getoverrun()
310
307
+ timer_gettime()
311
308
+ timer_settime()
312
-
% tzname ; you should better use 'tz_xxx' in the rt-thread.
313
-
% tzset() ; you should better use 'tz_xxx' in the rt-thread.
309
+
- tzname ; you should better use 'tz_xxx' in the rt-thread.
310
+
- tzset() ; you should better use 'tz_xxx' in the rt-thread.
0 commit comments