diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-11-04 01:29:37 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-11-05 22:21:04 +0100 |
commit | 3902cb2fcae6e2028252b5d2016bf0e99ed74980 (patch) | |
tree | 6f48ad0f9567569680529367b843e6e8abbece90 /lexxer.l | |
parent | 68b3d8fe3a9595b7a5cb2bb6bc5973ba26139704 (diff) | |
download | mig-3902cb2fcae6e2028252b5d2016bf0e99ed74980.tar.gz mig-3902cb2fcae6e2028252b5d2016bf0e99ed74980.tar.bz2 mig-3902cb2fcae6e2028252b5d2016bf0e99ed74980.zip |
Add support to define structures in mig.
Basic syntax is presented below and allows users to define
nested structured types by using simpler or structure types as
members. Mig will use the C padding and alignment rules to produce
the same size as the corresponding C structures.
type timespec_t = struct {
uint32_t tv_sec;
uint32_t tv_nsec;
};
This allows us to build stubs that are more easily adaptable to other
architectures.
Message-Id: <Y2SjQSMOINY8I5Dy@viriathus>
Diffstat (limited to 'lexxer.l')
-rw-r--r-- | lexxer.l | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -204,6 +204,8 @@ static void doSharp(const char *body); /* process body of # directives */ <Normal>">" RETURN(syRAngle); <Normal>"[" RETURN(syLBrack); <Normal>"]" RETURN(syRBrack); +<Normal>"{" RETURN(syLCBrack); +<Normal>"}" RETURN(syRCBrack); <Normal>"|" RETURN(syBar); <Normal>{Ident} { yylval.identifier = strmake(yytext); |