VirtualBox

source: kBuild/trunk/src/kmk/kmkbuiltin.h@ 3169

Last change on this file since 3169 was 3169, checked in by bird, 7 years ago

kmk/win: Run kDepObj on worker thread.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1/* $Id: kmkbuiltin.h 3169 2018-03-21 11:27:47Z bird $ */
2/** @file
3 * kMk Builtin command handling.
4 */
5
6/*
7 * Copyright (c) 2005-2016 knut st. osmundsen <bird-kBuild-spamx@anduin.net>
8 *
9 * This file is part of kBuild.
10 *
11 * kBuild is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * kBuild is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with kBuild. If not, see <http://www.gnu.org/licenses/>
23 *
24 */
25
26#ifndef ___kmk_kmkbuiltin_h___
27#define ___kmk_kmkbuiltin_h___
28
29#ifdef _MSC_VER
30# ifndef pid_t /* see config.h.win */
31# define pid_t intptr_t /* Note! sub_proc.c needs it to be pointer sized. */
32# endif
33#else
34# include <sys/types.h>
35#endif
36
37/* For the GNU/hurd weirdo. */
38#ifndef PATH_MAX
39# ifdef MAXPATHLEN
40# define PATH_MAX MAXPATHLEN
41# else
42# define PATH_MAX 4096
43# endif
44#endif
45#ifndef MAXPATHLEN
46# define MAXPATHLEN PATH_MAX
47#endif
48
49/** This is for telling fopen() to get a close-on-exec handle.
50 * @todo glibc 2.7+ and recent cygwin supports 'e' for doing this. */
51#ifndef KMK_FOPEN_NO_INHERIT_MODE
52# ifdef _MSC_VER
53# define KMK_FOPEN_NO_INHERIT_MODE "N"
54# else
55# define KMK_FOPEN_NO_INHERIT_MODE ""
56# endif
57#endif
58
59#include "kbuild_version.h"
60
61struct child;
62int kmk_builtin_command(const char *pszCmd, struct child *pChild, char ***ppapszArgvToSpawn, pid_t *pPidSpawned);
63int kmk_builtin_command_parsed(int argc, char **argv, struct child *pChild, char ***ppapszArgvToSpawn, pid_t *pPidSpawned);
64
65/**
66 * kmk built-in command entry.
67 */
68typedef struct KMKBUILTINENTRY
69{
70 union
71 {
72 struct
73 {
74 char cch;
75 char sz[15];
76 } s;
77 size_t cchAndStart;
78 } uName;
79 union
80 {
81 uintptr_t uPfn;
82#define FN_SIG_MAIN 0
83 int (* pfnMain)(int argc, char **argv, char **envp);
84#define FN_SIG_MAIN_SPAWNS 1
85 int (* pfnMainSpawns)(int argc, char **argv, char **envp, struct child *pChild, pid_t *pPid);
86#define FN_SIG_MAIN_TO_SPAWN 2
87 int (* pfnMainToSpawn)(int argc, char **argv, char **envp, char ***ppapszArgvToSpawn);
88 } u;
89 size_t uFnSignature : 8;
90 size_t fMpSafe : 1;
91 size_t fNeedEnv : 1;
92} KMKBUILTINENTRY;
93/** Pointer to kmk built-in command entry. */
94typedef KMKBUILTINENTRY const *PCKMKBUILTINENTRY;
95
96extern int kmk_builtin_append(int argc, char **argv, char **envp);
97extern int kmk_builtin_cp(int argc, char **argv, char **envp);
98extern int kmk_builtin_cat(int argc, char **argv, char **envp);
99extern int kmk_builtin_chmod(int argc, char **argv, char **envp);
100extern int kmk_builtin_cmp(int argc, char **argv, char **envp);
101extern int kmk_builtin_dircache(int argc, char **argv, char **envp);
102extern int kmk_builtin_echo(int argc, char **argv, char **envp);
103extern int kmk_builtin_expr(int argc, char **argv, char **envp);
104extern int kmk_builtin_install(int argc, char **argv, char **envp);
105extern int kmk_builtin_ln(int argc, char **argv, char **envp);
106extern int kmk_builtin_md5sum(int argc, char **argv, char **envp);
107extern int kmk_builtin_mkdir(int argc, char **argv, char **envp);
108extern int kmk_builtin_mv(int argc, char **argv, char **envp);
109extern int kmk_builtin_printf(int argc, char **argv, char **envp);
110extern int kmk_builtin_redirect(int argc, char **argv, char **envp, struct child *pChild, pid_t *pPidSpawned);
111extern int kmk_builtin_rm(int argc, char **argv, char **envp);
112extern int kmk_builtin_rmdir(int argc, char **argv, char **envp);
113extern int kmk_builtin_sleep(int argc, char **argv, char **envp);
114extern int kmk_builtin_test(int argc, char **argv, char **envp
115#ifndef kmk_builtin_test
116 , char ***ppapszArgvSpawn
117#endif
118 );
119extern int kmk_builtin_touch(int argc, char **argv, char **envp);
120#ifdef KBUILD_OS_WINDOWS
121extern int kmk_builtin_kSubmit(int argc, char **argv, char **envp, struct child *pChild, pid_t *pPidSpawned);
122extern int kSubmitSubProcGetResult(intptr_t pvUser, int *prcExit, int *piSigNo);
123extern int kSubmitSubProcKill(intptr_t pvUser, int iSignal);
124extern void kSubmitSubProcCleanup(intptr_t pvUser);
125#endif
126extern int kmk_builtin_kDepIDB(int argc, char **argv, char **envp);
127extern int kmk_builtin_kDepObj(int argc, char **argv, char **envp);
128
129extern char *kmk_builtin_func_printf(char *o, char **argv, const char *funcname);
130
131/* common-env-and-cwd-opt.c: */
132extern int kBuiltinOptEnvSet(char ***ppapszEnv, unsigned *pcEnvVars, unsigned *pcAllocatedEnvVars,
133 int cVerbosity, const char *pszValue);
134extern int kBuiltinOptEnvAppend(char ***ppapszEnv, unsigned *pcEnvVars, unsigned *pcAllocatedEnvVars,
135 int cVerbosity, const char *pszValue);
136extern int kBuiltinOptEnvPrepend(char ***ppapszEnv, unsigned *pcEnvVars, unsigned *pcAllocatedEnvVars,
137 int cVerbosity, const char *pszValue);
138extern int kBuiltinOptEnvUnset(char **papszEnv, unsigned *pcEnvVars, int cVerbosity, const char *pszVarToRemove);
139extern int kBuiltinOptChDir(char *pszCwd, size_t cbCwdBuf, const char *pszValue);
140
141#endif
142
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette