swh:1:snp:baebc2109e4a2ec22a1129a3859647e191d04df4
Raw File
Tip revision: eccdda2ef2b9f76abd0d678afdfaeecaf9fd7bad authored by Ben Hutchings on 07 March 2016, 02:33:29 UTC
Synthetic revision for Debian source package linux version 3.2.78-1
Tip revision: eccdda2
buffer_sync.h
/**
 * @file buffer_sync.h
 *
 * @remark Copyright 2002 OProfile authors
 * @remark Read the file COPYING
 *
 * @author John Levon <levon@movementarian.org>
 */

#ifndef OPROFILE_BUFFER_SYNC_H
#define OPROFILE_BUFFER_SYNC_H

/* add the necessary profiling hooks */
int sync_start(void);

/* remove the hooks */
void sync_stop(void);

/* sync the given CPU's buffer */
void sync_buffer(int cpu);

#endif /* OPROFILE_BUFFER_SYNC_H */
back to top