~joel-auterson/ubuntu/maverick/shotwell/menu_rename

« back to all changes in this revision

Viewing changes to vapi/ExtendedPosix.vapi

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2010-01-06 14:08:43 UTC
  • Revision ID: james.westby@ubuntu.com-20100106140843-tvwgfayof1rue3tt
Tags: upstream-0.4.2+dfsg
ImportĀ upstreamĀ versionĀ 0.4.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2009 Yorba Foundation
 
2
 *
 
3
 * This software is licensed under the GNU LGPL (version 2.1 or later).
 
4
 * See the COPYING file in this distribution. 
 
5
 */
 
6
 
 
7
[CCode (cprefix="", lower_case_cprefix="")]
 
8
namespace ExtendedPosix {
 
9
    [CCode (cheader_filename="unistd.h")]
 
10
    public long sysconf(int name);
 
11
    
 
12
    [CCode (cprefix="", lower_case_cprefix="")]
 
13
    enum ConfName {
 
14
        _SC_NPROCESSORS_CONF,
 
15
        _SC_NPROCESSORS_ONLN
 
16
    }
 
17
}
 
18