Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/cvmacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ extern void __record_sel_nchg(struct net_t *, int32, int32);
/* but one record called, it must be off for dctrl processing - not needed */
/* DBG ??? release add --- */
/* AIV 11/29/10 - need to check for toggle coverage */
extern void __add_dmpv_chglst_el_sel(struct net_t *, int32);
#define record_sel_nchg_(np, i1, i2) \
do { \
__lhs_changed = FALSE; \
Expand Down
11 changes: 5 additions & 6 deletions src/v_asmlnk.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ OF SUCH DAMAGE.
* compiler asm gen routines - routines for post lowering asm gen here
*/

/* AIV 03/28/12 - this is needed for some systems for clone call */
// #ifndef _GNU_SOURCE
// #define _GNU_SOURCE
// #endif

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand All @@ -189,12 +194,6 @@ OF SUCH DAMAGE.
#include <linux/sched.h>
#endif

/* AIV 03/28/12 - this is needed for some systems for clone call */
// #ifndef _GNU_SOURCE
// ##define _GNU_SOURCE
// #endif


#ifdef __DBMALLOC__
#include "../malloc.h"
#endif
Expand Down