選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

internal_hash_map.h 248B

12345678910111213
  1. #include "khash.h"
  2. #include <pthread.h>
  3. KHASH_MAP_INIT_INT64(long, long)
  4. typedef khash_t(long)* internal_hash_map_t;
  5. typedef struct {
  6. hash_map_t h;
  7. int refcount;
  8. pthread_mutex_t mutex;
  9. int autolock;
  10. long counter;
  11. } hash_map_lua_t;