[libc][NFC] Add 'struct_' prefix to type headers defining struct types.

This allows header generator to generate type inclusion boiler plate in
a straightforward manner.
This commit is contained in:
Siva Chandra Reddy 2022-01-21 06:28:42 +00:00
parent 86b08ed6bb
commit 7f0f4cab18
5 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@ def SSizeT : TypeDecl<"ssize_t"> {
def StructTm: TypeDecl<"struct tm"> {
let Decl = [{
#include <llvm-libc-types/tm.h>
#include <llvm-libc-types/struct_tm.h>
}];
}
@ -334,7 +334,7 @@ def SysMManAPI : PublicAPI<"sys/mman.h"> {
def StructSigactionDefn : TypeDecl<"struct sigaction"> {
let Decl = [{
#include <llvm-libc-types/__sigaction.h>
#include <llvm-libc-types/struct_sigaction.h>
}];
}

View File

@ -67,7 +67,7 @@ add_gen_header(
DEPENDS
.llvm_libc_common_h
.llvm-libc-types.time_t
.llvm-libc-types.tm
.llvm-libc-types.struct_tm
)
add_gen_header(
@ -103,7 +103,7 @@ add_gen_header(
DATA_FILES
../config/${LIBC_TARGET_OS}/signal.h.in
DEPENDS
.llvm-libc-types.__sigaction
.llvm-libc-types.struct_sigaction
.llvm-libc-types.__sighandler_t
)

View File

@ -1,7 +1,6 @@
add_header(__bsearchcompare_t HDR __bsearchcompare_t.h)
add_header(__call_once_func_t HDR __call_once_func_t.h)
add_header(__qsortcompare_t HDR __qsortcompare_t.h)
add_header(__sigaction HDR __sigaction.h)
add_header(__sighandler_t HDR __sighandler_t.h)
add_header(cnd_t HDR cnd_t.h)
add_header(double_t HDR double_t.h)
@ -18,7 +17,8 @@ add_header(off_t HDR off_t.h)
add_header(once_flag HDR once_flag.h)
add_header(size_t HDR size_t.h)
add_header(ssize_t HDR ssize_t.h)
add_header(struct_sigaction HDR struct_sigaction.h)
add_header(struct_tm HDR struct_tm.h)
add_header(thrd_start_t HDR thrd_start_t.h)
add_header(thrd_t HDR thrd_t.h)
add_header(time_t HDR time_t.h)
add_header(tm HDR tm.h)