os/ossrv/genericopenlibs/openenvcore/include/spawn.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
* 
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
sl@0
    21
#ifndef	_SPAWN_H_
sl@0
    22
#define	_SPAWN_H_
sl@0
    23
sl@0
    24
#include <signal.h>
sl@0
    25
#include <sys/types.h>
sl@0
    26
#include <sched.h>
sl@0
    27
sl@0
    28
typedef struct {
sl@0
    29
	short _flags;
sl@0
    30
	pid_t _pgrp;
sl@0
    31
	sigset_t _sd;
sl@0
    32
	sigset_t _sm;
sl@0
    33
	struct sched_param _sp;
sl@0
    34
	int _policy;
sl@0
    35
} posix_spawnattr_t;
sl@0
    36
sl@0
    37
/* Flags that can be set in posix_spawnattr_t */
sl@0
    38
#define POSIX_SPAWN_RESETIDS		0x01
sl@0
    39
#define POSIX_SPAWN_SETPGROUP		0x02
sl@0
    40
#define POSIX_SPAWN_SETSIGDEF		0x04
sl@0
    41
#define POSIX_SPAWN_SETSIGMASK		0x08
sl@0
    42
#define POSIX_SPAWN_SETSCHEDPARAM	0x10
sl@0
    43
#define POSIX_SPAWN_SETSCHEDULER	0x20
sl@0
    44
sl@0
    45
// forward declaration
sl@0
    46
struct file_actions_t;
sl@0
    47
typedef struct {
sl@0
    48
	int _cnt;
sl@0
    49
	struct file_actions_t* _fa;
sl@0
    50
} posix_spawn_file_actions_t;
sl@0
    51
sl@0
    52
__BEGIN_DECLS
sl@0
    53
sl@0
    54
IMPORT_C int posix_spawn(pid_t* pid, const char* path,
sl@0
    55
				const posix_spawn_file_actions_t* file_actions,
sl@0
    56
				const posix_spawnattr_t* attrp, char *const argv[],
sl@0
    57
				char *const envp[]);
sl@0
    58
				
sl@0
    59
IMPORT_C int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t* file_actions,
sl@0
    60
				int fid);
sl@0
    61
				
sl@0
    62
IMPORT_C int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t* file_actions,
sl@0
    63
				int fid1, int fid2);
sl@0
    64
				
sl@0
    65
IMPORT_C int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t* file_actions,
sl@0
    66
          		int fid, const char* path, int oflag, mode_t mode);
sl@0
    67
          		
sl@0
    68
IMPORT_C int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t* file_actions);
sl@0
    69
sl@0
    70
IMPORT_C int posix_spawn_file_actions_init(posix_spawn_file_actions_t* file_actions);
sl@0
    71
sl@0
    72
IMPORT_C int posix_spawnattr_destroy(posix_spawnattr_t* attrp);
sl@0
    73
sl@0
    74
IMPORT_C int posix_spawnattr_getsigdefault(const posix_spawnattr_t* attrp, 
sl@0
    75
				sigset_t* sigdefault);
sl@0
    76
									
sl@0
    77
IMPORT_C int posix_spawnattr_getflags(const posix_spawnattr_t* attrp, short* flags);
sl@0
    78
sl@0
    79
IMPORT_C int posix_spawnattr_getpgroup(const posix_spawnattr_t* attrp, pid_t* pgroup);
sl@0
    80
sl@0
    81
IMPORT_C int posix_spawnattr_getschedparam(const posix_spawnattr_t* attrp,
sl@0
    82
          		struct sched_param* schedparam);
sl@0
    83
          		
sl@0
    84
IMPORT_C int posix_spawnattr_getschedpolicy(const posix_spawnattr_t* attrp, int* policy);
sl@0
    85
sl@0
    86
IMPORT_C int posix_spawnattr_getsigmask(const posix_spawnattr_t* attrp, sigset_t* sigmask);
sl@0
    87
sl@0
    88
IMPORT_C int posix_spawnattr_init(posix_spawnattr_t* attrp);
sl@0
    89
sl@0
    90
IMPORT_C int posix_spawnattr_setsigdefault(posix_spawnattr_t* attrp,
sl@0
    91
				const sigset_t* sigdefault);
sl@0
    92
sl@0
    93
IMPORT_C int posix_spawnattr_setflags(posix_spawnattr_t* attrp, short flags);
sl@0
    94
sl@0
    95
IMPORT_C int posix_spawnattr_setpgroup(posix_spawnattr_t* attrp, pid_t pgroup);
sl@0
    96
sl@0
    97
IMPORT_C int posix_spawnattr_setschedparam(posix_spawnattr_t* attrp,
sl@0
    98
				const struct sched_param* schedparam);
sl@0
    99
				
sl@0
   100
IMPORT_C int posix_spawnattr_setschedpolicy(posix_spawnattr_t* attrp, int policy);
sl@0
   101
sl@0
   102
IMPORT_C int posix_spawnattr_setsigmask(posix_spawnattr_t* attrp, const sigset_t* sigmask);
sl@0
   103
          
sl@0
   104
__END_DECLS
sl@0
   105
sl@0
   106
#endif /* _SPAWN_H_ */