libdap++  Updated for version 3.8.2
HTTPCacheTable.h File Reference
#include <pthread.h>
#include <string>
#include <vector>
#include <map>
#include "Error.h"
#include "InternalErr.h"
#include "debug.h"
Include dependency graph for HTTPCacheTable.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  libdap::HTTPCacheTable::CacheEntry
 
class  libdap::HTTPCacheTable
 

Namespaces

 libdap
 

Macros

#define DESTROY(m)   pthread_mutex_destroy((m))
 
#define INIT(m)   pthread_mutex_init((m), 0)
 
#define LOCK(m)   pthread_mutex_lock((m))
 
#define TRYLOCK(m)   pthread_mutex_trylock((m))
 
#define UNLOCK(m)   pthread_mutex_unlock((m))
 

Functions

int libdap::get_hash (const string &url)
 

Macro Definition Documentation

◆ DESTROY

#define DESTROY (   m)    pthread_mutex_destroy((m))

Definition at line 57 of file HTTPCacheTable.h.

◆ INIT

#define INIT (   m)    pthread_mutex_init((m), 0)

Definition at line 56 of file HTTPCacheTable.h.

Referenced by libdap::HTTPCacheTable::CacheEntry::CacheEntry().

◆ LOCK

#define LOCK (   m)    pthread_mutex_lock((m))

◆ TRYLOCK

#define TRYLOCK (   m)    pthread_mutex_trylock((m))

◆ UNLOCK