~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/uti/sge_loadmem.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SGE_LOADMEM_H
 
2
#define __SGE_LOADMEM_H
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 * 
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 * 
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 * 
 
11
 * 
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 * 
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 * 
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 * 
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
#if defined(CRAY) || defined(SOLARIS) || defined(HPUX) || defined(ALPHA) || defined(LINUX) || defined(IRIX) || defined(NECSX4) || defined(NECSX5) || defined(DARWIN) || defined(FREEBSD) || defined(NETBSD) || defined(HAS_AIX5_PERFLIB)
 
36
 
 
37
#define SGE_LOADMEM
 
38
 
 
39
/****** uti/os/sge_mem_info_t *************************************************
 
40
*  NAME
 
41
*     sge_mem_info_t -- Structure to store memory information
 
42
*
 
43
*  SYNOPSIS
 
44
*     typedef struct {
 
45
*        double mem_total; 
 
46
*        double mem_free;  
 
47
*        double swap_total; 
 
48
*        double swap_free;   
 
49
*     #ifdef IRIX
 
50
*        double swap_rsvd;   
 
51
*     #endif
 
52
*     } sge_mem_info_t;
 
53
*
 
54
*  FUNCTION
 
55
*     mem_total  - total amount of memory in MB
 
56
*     mem_free   - amount of free memory in MB
 
57
*     swap_total - total amount of swap space in MB
 
58
*     swap_free  - amount of free swap space in MB
 
59
*     swap_rsvd  - amount of reserved swap space in MB
 
60
*
 
61
*  SEE ALSO
 
62
*     uti/os/sge_loadmem()
 
63
******************************************************************************/
 
64
typedef struct {
 
65
   double mem_total;  
 
66
   double mem_free;    
 
67
   double swap_total;  
 
68
   double swap_free; 
 
69
#ifdef IRIX
 
70
   double swap_rsvd;  
 
71
#endif
 
72
} sge_mem_info_t;
 
73
 
 
74
int sge_loadmem(sge_mem_info_t *mem_info);
 
75
#endif /* SGE_LOADMEM */
 
76
 
 
77
#endif /* __SGE_LOADMEM_H */