diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-12 12:45:33 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-12 12:47:29 -0700 |
commit | 5070a20cd1e65d52856bd74558f9a34f8dca114f (patch) | |
tree | a8cd5b178480c7b670b0a8e63ccd15dff190c7b3 /glcpp.h | |
parent | 33cc400714f379ef13e876b4aedd0de8cb5d033d (diff) |
Convert lexer to talloc and add xtalloc wrappers.
The lexer was previously using strdup (expecting the parser to free),
but is now more consistent, easier to use, and slightly more efficent
by using talloc along with the parser.
Also, we add xtalloc and xtalloc_strdup wrappers around talloc and
talloc_strdup to put all of the out-of-memory-checking code in one
place.
Diffstat (limited to 'glcpp.h')
-rw-r--r-- | glcpp.h | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -55,7 +55,7 @@ glcpp_parser_destroy (glcpp_parser_t *parser); /* Generated by glcpp-lex.l to glcpp-lex.c */ int -yylex_init (yyscan_t *scanner); +yylex_init_extra (glcpp_parser_t *parser, yyscan_t* scanner); int yylex (yyscan_t scanner); @@ -68,4 +68,14 @@ yylex_destroy (yyscan_t scanner); int yyparse (glcpp_parser_t *parser); +/* xtalloc - wrappers around talloc to check for out-of-memory */ + +#define xtalloc(ctx, type) (type *)xtalloc_named_const(ctx, sizeof(type), #type) + +void * +xtalloc_named_const (const void *context, size_t size, const char *name); + +char * +xtalloc_strdup (const void *t, const char *p); + #endif |