Navigation



Ignore:
Timestamp:
May 9, 2013, 1:06:03 PM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Parents:
1098:f38d77f9cfd3 (diff), 1100:4b7192d0ffde (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merged

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfdproto.h

    r1098 r1101  
    8080#include <stdarg.h>
    8181
    82 #ifdef DEBUG
    83 #include <libgen.h>     /* for basename if --dbg_file is specified */
    84 #endif /* DEBUG */
     82#include <libgen.h>     /* for basename */
    8583
    8684#ifdef SWIG
  • include/freeDiameter/libfdproto.h

    r1100 r1101  
    25482548
    25492549
     2550/* Helper for the hooks mechanism, for use from libfdcore */
     2551struct fd_msg_pmdl {
     2552        struct fd_list sentinel; /* if the sentinel.o field is NULL, the structure is not initialized. Otherwise it points to the cleanup function in libfdcore. */
     2553        pthread_mutex_t lock;
     2554};
     2555#define FD_MSG_PMDL_INITIALIZER(pmdl_ptr)        { FD_LIST_INITIALIZER(  (pmdl_ptr)->sentinel       ), PTHREAD_MUTEX_INITIALIZER }
     2556struct fd_msg_pmdl * fd_msg_pmdl_get(struct msg * msg);
     2557
    25502558/***************************************/
    25512559/*   Manage AVP values                 */
Note: See TracChangeset for help on using the changeset viewer.