老实说,我不知道如何发布这个问题......
我有一个全局动态列表,程序的所有功能都可以看到它,
因为今天这个列表被填充了从文件中读取数据。
但现在我想要一个内部“列表”,如果没有指定文件,则加载该列表。
列表元素是这样的:
// odb tuple
typedef struct _odb_t
{
const char *name,*value;
struct _odb_t *next;
} odb_t;
enum _method {GET,POST};
// odb type binding
typedef struct _odb_type
{
enum _type type;
const char *value;
struct _odb_type *next;
} odb_type;
// defining online_db struct
typedef struct _odb
{
const char *host,*file,*patrn;
enum _method method;
odb_type *types;
odb_t *tuples;
pthread_t thread; // the thread that is using this host
struct _odb *next;
} odb;
我怎样才能在 .text 部分中有一个内部列表?
提前致谢。