diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-09-05 15:30:45 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-09-05 15:30:45 -0300 |
| commit | 14e416355f83cf0a1b871eedec2c92b86dbe76d6 (patch) | |
| tree | 620c7fa0b811d5f91d3d2f9b4879b289df6d137c /lobject.h | |
| parent | f33cda8d6eb1cac5b9042429e85f1096175c7ca5 (diff) | |
| download | lua-14e416355f83cf0a1b871eedec2c92b86dbe76d6.tar.gz lua-14e416355f83cf0a1b871eedec2c92b86dbe76d6.tar.bz2 lua-14e416355f83cf0a1b871eedec2c92b86dbe76d6.zip | |
Added suport for Fixed Buffers
A fixed buffer keeps a binary chunk "forever", so that the program
does not need to copy some of its parts when loading it.
Diffstat (limited to 'lobject.h')
| -rw-r--r-- | lobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -556,6 +556,7 @@ typedef struct AbsLineInfo { | |||
| 556 | ** Flags in Prototypes | 556 | ** Flags in Prototypes |
| 557 | */ | 557 | */ |
| 558 | #define PF_ISVARARG 1 | 558 | #define PF_ISVARARG 1 |
| 559 | #define PF_FIXED 2 /* prototype has parts in fixed memory */ | ||
| 559 | 560 | ||
| 560 | 561 | ||
| 561 | /* | 562 | /* |
