Skip to content
Snippets Groups Projects
Commit f8c9ca8c authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added macro MAKE_CONSTANT_SHARED_STRING(), which push_contant_text() expects.

Rev: src/stralloc.h:1.11
parent 1d9e8725
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,7 @@ struct pike_string *debug_findstring(const struct pike_string *foo); ...@@ -36,6 +36,7 @@ struct pike_string *debug_findstring(const struct pike_string *foo);
#define reference_shared_string(s) do { struct pike_string *S_=(s); debug_malloc_touch(S_); S_->refs++; }while(0) #define reference_shared_string(s) do { struct pike_string *S_=(s); debug_malloc_touch(S_); S_->refs++; }while(0)
#define copy_shared_string(to,s) do { struct pike_string *S_=(to)=(s); debug_malloc_touch(S_); S_->refs++; }while(0) #define copy_shared_string(to,s) do { struct pike_string *S_=(to)=(s); debug_malloc_touch(S_); S_->refs++; }while(0)
#else #else
#define reference_shared_string(s) (s)->refs++ #define reference_shared_string(s) (s)->refs++
...@@ -44,6 +45,11 @@ struct pike_string *debug_findstring(const struct pike_string *foo); ...@@ -44,6 +45,11 @@ struct pike_string *debug_findstring(const struct pike_string *foo);
#endif #endif
#define MAKE_CONSTANT_SHARED_STRING(var, text) \
do { static struct pike_string *str_; \
if(!str_) str_=make_shared_string((text)); \
copy_shared_string((var), str_); \
}while(0)
/* Prototypes begin here */ /* Prototypes begin here */
struct pike_string *binary_findstring(const char *foo, INT32 l); struct pike_string *binary_findstring(const char *foo, INT32 l);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment