1#ifndef _LINUX_MPP_H
2#define _LINUX_MPP_H
3
4/*
5 * Definitions related to Massively Parallel Processing support.
6 */
7
8/* All mpp implementations must supply these functions */
9
10extern void mpp_init(void);
11extern void mpp_hw_init(void);
12extern void mpp_procfs_init(void);
13
14extern int mpp_num_cells(void);
15extern int mpp_cid(void);
16extern int get_mppinfo(char *buffer);
17
18#endif
19