Could you give me the source code for the execve () system call (exec family). I work with linux.
execve () calls sys_execve (), which calls do_execve (), where the action is located: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f = fs / exec.c # l1376
You can look at sys_execve in arch / x86 / kernel / process.c , which calls do_execve on fs / exec.c.
The entry point for execve() here on the Linux cross-reference page. You can follow function links ( do_execve() , probably what you really need) to see the source code.
execve()
do_execve()
You can get the linux source code on the page > To view inline use the git viewer
Source: https://habr.com/ru/post/1335525/More articles:cross-dbms way to check if a string is numeric - sqlWhat is the new NHibernate in 3.0? - nhibernateC ++: counting all frames in a game - c ++Aggregate save () s in Django? - pythonWhat is the best way to generate xsd xml schema from dotnet class? - .netHow to set selection in swt table using setSelection and set to false? - javaWhat does the following code do? - chow to use regexp in MVC 3 with a razor - asp.net-mvcActive Directory Profiles Active Directory - sharepoint-2007How can I try the parametric border of an object through N points, which leads to equal parts of the length of the arc? - algorithmAll Articles