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
3 changes: 1 addition & 2 deletions src/api/include/pdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
#include "pdc_query.h"
#include "pdc_analysis.h"
#include "pdc_transform.h"

int PDC_timing_report(const char *prefix);
#include "pdc_timing.h"

/*********************/
/* Public Prototypes */
Expand Down
4 changes: 2 additions & 2 deletions src/api/pdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ PDCinit(const char *pdc_name)
if (PDC_Client_init() < 0)
PGOTO_ERROR(0, "PDC client init error");
#ifdef PDC_TIMING
PDC_timing_init();
PDC_client_timing_init();
#endif
ret_value = pdcid;

Expand All @@ -127,7 +127,7 @@ PDC_class__close(struct _pdc_class *p)

FUNC_ENTER(NULL);
#ifdef PDC_TIMING
PDC_timing_finalize();
PDC_client_timing_finalize();
#endif

p->name = (char *)PDC_free(p->name);
Expand Down
Loading