32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/* Calcite, include/kernel-public/process.h
|
|
* Copyright 2025 Benji Dial
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct process_start_info {
|
|
|
|
//keys of envvars to copy to new process.
|
|
const char **forwared_envvars;
|
|
int forwared_envvar_count;
|
|
|
|
//keys and values to set in new process.
|
|
//entry i has key set_envvars[i * 2] and value set_envvars[i * 2 + 1].
|
|
//set_envvar_count is number of envvars, not twice that.
|
|
const char **set_envvars;
|
|
int set_envvar_count;
|
|
|
|
};
|