]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.nativemem/src/org/simantics/nativemem/internal/Resource.java
Rudimentary Linux and MacOSX support for org.simantics.nativemem
[simantics/platform.git] / bundles / org.simantics.nativemem / src / org / simantics / nativemem / internal / Resource.java
1 /*******************************************************************************
2  * Copyright (c) 2016, 2017 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.nativemem.internal;
13
14 /**
15  * @author Tuukka Lehtonen
16  * @since 1.29.0
17  */
18 public interface Resource {
19
20     int RUSAGE_SELF = 0;
21     int RUSAGE_CHILDREN = -1;
22     int RUSAGE_BOTH = -2;  /* sys_wait4() uses this */
23     int RUSAGE_THREAD = 1; /* only the calling thread */
24
25     /**
26      * Size of a page in bytes. Must not be less than 1. (Some systems use
27      * PAGE_SIZE instead.)
28      */
29     int _SC_PAGESIZE = 30;
30
31     long sysconf(int name);
32
33 }