~ubuntu-branches/ubuntu/precise/htop/precise

« back to all changes in this revision

Viewing changes to plpa-1.1/src/plpa_internal.h

  • Committer: Bazaar Package Importer
  • Author(s): Eugene V. Lyubimkin
  • Date: 2011-02-13 10:41:53 UTC
  • mfrom: (2.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110213104153-srmr149fxnyrhk0d
Tags: 0.9-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- c -*-
2
 
 *
3
 
 * Copyright (c) 2004-2005 The Trustees of Indiana University.
4
 
 *                         All rights reserved.
5
 
 * Copyright (c) 2004-2005 The Regents of the University of California.
6
 
 *                         All rights reserved.
7
 
 * Copyright (c) 2007      Cisco Systems, Inc.  All rights reserved.
8
 
 * $COPYRIGHT$
9
 
 *
10
 
 * Additional copyrights may follow
11
 
 *
12
 
 * $HEADER$
13
 
 */
14
 
 
15
 
#ifndef PLPA_INTERNAL_H
16
 
#define PLPA_INTERNAL_H
17
 
 
18
 
#include <plpa.h>
19
 
 
20
 
/* Have we initialized yet? */
21
 
extern int PLPA_NAME(initialized);
22
 
 
23
 
/* Cached size of the affinity buffers that the kernel expects */
24
 
extern size_t PLPA_NAME(len);
25
 
 
26
 
/* Setup topology information */
27
 
int PLPA_NAME(map_init)(void);
28
 
 
29
 
/* Setup API type */
30
 
int PLPA_NAME(api_probe_init)(void);
31
 
 
32
 
/* Free all mapping memory */
33
 
void PLPA_NAME(map_finalize)(void);
34
 
 
35
 
#endif /* PLPA_INTERNAL_H */
36