File: test_pptrace.c

package info (click to toggle)
eztrace 2.2.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,012 kB
  • sloc: ansic: 37,703; sh: 1,246; cpp: 1,181; perl: 910; makefile: 738; fortran: 327; f90: 320; python: 124
file content (23 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* -*- c-file-style: "GNU" -*- */
/*
 * Copyright (C) CNRS, INRIA, Université Bordeaux 1, Télécom SudParis
 * See COPYING in top-level directory.
 */

#include <stdio.h>
#include "test_pptrace.h"

double test_pptrace_foo(uint32_t *array, uint32_t array_size) {
  printf("Entered test_pptrace_foo!\n");
  uint32_t i, sum;
  sum = 0;

  for (i = 0; i < array_size; i++) {
    array[i] = array[i] * (i + 1);
    sum += array[i];
  }

  printf("Leaving test_pptrace_foo!\n");
  return sum;
}