diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-03 13:06:00 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-03 13:06:00 +0000 |
commit | 22c96fc102ce8ee52778a2d8a7fced27b492c1ee (patch) | |
tree | 1a1f53570204f0e471c6f8c8f2b2252f40a448d8 /embedvar.h | |
parent | f550f1f84120b52f9da4c1bccd557ed73c676650 (diff) | |
download | perl-22c96fc102ce8ee52778a2d8a7fced27b492c1ee.tar.gz |
Change PL_perlio_fd_refcnt from a fixed size static array to a pointer
to a dynamic array.
p4raw-id: //depot/perl@27059
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index f699cc21cb..9b7fe7daf4 100644 --- a/embedvar.h +++ b/embedvar.h @@ -882,6 +882,8 @@ #define PL_Gperlio_debug_fd (my_vars->Gperlio_debug_fd) #define PL_perlio_fd_refcnt (my_vars->Gperlio_fd_refcnt) #define PL_Gperlio_fd_refcnt (my_vars->Gperlio_fd_refcnt) +#define PL_perlio_fd_refcnt_size (my_vars->Gperlio_fd_refcnt_size) +#define PL_Gperlio_fd_refcnt_size (my_vars->Gperlio_fd_refcnt_size) #define PL_ppaddr (my_vars->Gppaddr) #define PL_Gppaddr (my_vars->Gppaddr) #define PL_sh_path (my_vars->Gsh_path) @@ -931,6 +933,7 @@ #define PL_Gpatleave PL_patleave #define PL_Gperlio_debug_fd PL_perlio_debug_fd #define PL_Gperlio_fd_refcnt PL_perlio_fd_refcnt +#define PL_Gperlio_fd_refcnt_size PL_perlio_fd_refcnt_size #define PL_Gppaddr PL_ppaddr #define PL_Gsh_path PL_sh_path #define PL_Gsig_defaulting PL_sig_defaulting |