Files
source/S/src--background.c.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

728 lines
121 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>src/background.c</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<!-- beginning of fixed guide -->
<div id='guide'><ul>
<li><a href='#L89'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
<li><a href='#L645'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
<li class='standout'><span><a href='../files/src.html'>src</a>/background.c</span></li>
</ul></div>
<!-- end of fixed guide -->
<div align='right'>Manual pages:
<a href=man/mc.html>mc</a> &bullet; <a href=man/mcdiff.html>mcdiff</a> &bullet; <a href=man/mcedit.html>mcedit</a> &bullet; <a href=man/mcview.html>mcview</a>
</div>
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/src.html'>src</a>/background.c</h2>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><img class='icon' src='../icons/n_top.png' alt='[top]' /><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+1 src/background.c' /> */</em>
<hr />
<h2 class='header'>DEFINITIONS</h2>
This source file includes following definitions.
<ol>
<li><a href='#L89' title='Defined at 89.'>register_task_running</a></li>
<li><a href='#L108' title='Defined at 108.'>destroy_task</a></li>
<li><a href='#L177' title='Defined at 177.'>reading_failed</a></li>
<li><a href='#L188' title='Defined at 188.'>background_attention</a></li>
<li><a href='#L405' title='Defined at 405.'>parent_call_header</a></li>
<li><a href='#L425' title='Defined at 425.'>parent_va_call</a></li>
<li><a href='#L455' title='Defined at 455.'>parent_va_call_string</a></li>
<li><a href='#L491' title='Defined at 491.'>unregister_task_running</a></li>
<li><a href='#L500' title='Defined at 500.'>unregister_task_with_pid</a></li>
<li><a href='#L519' title='Defined at 519.'>do_background</a></li>
<li><a href='#L595' title='Defined at 595.'>parent_call</a></li>
<li><a href='#L610' title='Defined at 610.'>parent_call_string</a></li>
<li><a href='#L626' title='Defined at 626.'>background_parent_call</a></li>
<li><a href='#L645' title='Defined at 645.'>background_parent_call_string</a></li>
</ol>
<hr />
<pre>
<a id='L1' name='L1'></a> 1 <em class='comment'>/* {{{ Copyright */</em>
<a id='L2' name='L2'></a> 2
<a id='L3' name='L3'></a> 3 <em class='comment'>/* Background support.</em>
<a id='L4' name='L4'></a> 4 <em class='comment'></em>
<a id='L5' name='L5'></a> 5 <em class='comment'> Copyright (C) 1996-2025</em>
<a id='L6' name='L6'></a> 6 <em class='comment'> Free Software Foundation, Inc.</em>
<a id='L7' name='L7'></a> 7 <em class='comment'></em>
<a id='L8' name='L8'></a> 8 <em class='comment'> Written by:</em>
<a id='L9' name='L9'></a> 9 <em class='comment'> Miguel de Icaza, 1996</em>
<a id='L10' name='L10'></a> 10 <em class='comment'></em>
<a id='L11' name='L11'></a> 11 <em class='comment'> This file is part of the Midnight Commander.</em>
<a id='L12' name='L12'></a> 12 <em class='comment'></em>
<a id='L13' name='L13'></a> 13 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
<a id='L14' name='L14'></a> 14 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
<a id='L15' name='L15'></a> 15 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
<a id='L16' name='L16'></a> 16 <em class='comment'> or (at your option) any later version.</em>
<a id='L17' name='L17'></a> 17 <em class='comment'></em>
<a id='L18' name='L18'></a> 18 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
<a id='L19' name='L19'></a> 19 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
<a id='L20' name='L20'></a> 20 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
<a id='L21' name='L21'></a> 21 <em class='comment'> GNU General Public License for more details.</em>
<a id='L22' name='L22'></a> 22 <em class='comment'></em>
<a id='L23' name='L23'></a> 23 <em class='comment'> You should have received a copy of the GNU General Public License</em>
<a id='L24' name='L24'></a> 24 <em class='comment'> along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</em>
<a id='L25' name='L25'></a> 25 <em class='comment'> */</em>
<a id='L26' name='L26'></a> 26
<a id='L27' name='L27'></a> 27 <em class='comment'>/* }}} */</em>
<a id='L28' name='L28'></a> 28
<a id='L29' name='L29'></a> 29 <em class='comment'>/** \file background.c</em>
<a id='L30' name='L30'></a> 30 <em class='comment'> * \brief Source: Background support</em>
<a id='L31' name='L31'></a> 31 <em class='comment'> */</em>
<a id='L32' name='L32'></a> 32
<a id='L33' name='L33'></a> 33 <em class='sharp'>#include</em> &lt;config.h&gt;
<a id='L34' name='L34'></a> 34
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> &lt;stdlib.h&gt;
<a id='L36' name='L36'></a> 36 <em class='sharp'>#include</em> &lt;errno.h&gt;
<a id='L37' name='L37'></a> 37 <em class='sharp'>#include</em> &lt;signal.h&gt;
<a id='L38' name='L38'></a> 38 <em class='sharp'>#include</em> &lt;stdarg.h&gt;
<a id='L39' name='L39'></a> 39 <em class='sharp'>#include</em> &lt;stdio.h&gt;
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> &lt;string.h&gt;
<a id='L41' name='L41'></a> 41
<a id='L42' name='L42'></a> 42 <em class='sharp'>#include</em> &lt;sys/types.h&gt;
<a id='L43' name='L43'></a> 43 <em class='sharp'>#include</em> &lt;sys/stat.h&gt;
<a id='L44' name='L44'></a> 44 <em class='sharp'>#include</em> &lt;sys/wait.h&gt; <em class='comment'>// waitpid()</em>
<a id='L45' name='L45'></a> 45
<a id='L46' name='L46'></a> 46 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
<a id='L47' name='L47'></a> 47
<a id='L48' name='L48'></a> 48 <em class='sharp'>#include</em> "<a href='lib--unixcompat.h.html'>lib/unixcompat.h</a>"
<a id='L49' name='L49'></a> 49 <em class='sharp'>#include</em> "<a href='lib--tty--key.h.html'>lib/tty/key.h</a>" <em class='comment'>// add_select_channel(), delete_select_channel()</em>
<a id='L50' name='L50'></a> 50 <em class='sharp'>#include</em> "<a href='lib--widget.h.html'>lib/widget.h</a>" <em class='comment'>// message()</em>
<a id='L51' name='L51'></a> 51 <em class='sharp'>#include</em> "<a href='lib--event-types.h.html'>lib/event-types.h</a>"
<a id='L52' name='L52'></a> 52 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>lib/util.h</a>" <em class='comment'>// my_fork()</em>
<a id='L53' name='L53'></a> 53
<a id='L54' name='L54'></a> 54 <em class='sharp'>#include</em> "<a href='../I/background.h.html'>background.h</a>"
<a id='L55' name='L55'></a> 55
<a id='L56' name='L56'></a> 56 <em class='comment'>/*** global variables ****************************************************************************/</em>
<a id='L57' name='L57'></a> 57
<a id='L58' name='L58'></a> 58 <em class='sharp'>#define</em> <a href='../R/MAXCALLARGS.html' title='Multiple referred from 2 places.'>MAXCALLARGS</a> 4 <em class='comment'>// Number of arguments supported</em>
<a id='L59' name='L59'></a> 59
<a id='L60' name='L60'></a> 60 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
<a id='L61' name='L61'></a> 61
<a id='L62' name='L62'></a> 62 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
<a id='L63' name='L63'></a> 63
<a id='L64' name='L64'></a> 64 <strong class='reserved'>enum</strong> <a href='../R/ReturnType.html' title='Multiple referred from 2 places.'>ReturnType</a>
<a id='L65' name='L65'></a> 65 <em class='brace'>{</em>
<a id='L66' name='L66'></a> 66 <a href='../R/Return_String.html' title='Multiple referred from 2 places.'>Return_String</a>,
<a id='L67' name='L67'></a> 67 <a href='../R/Return_Integer.html' title='Multiple referred from 2 places.'>Return_Integer</a>
<a id='L68' name='L68'></a> 68 <em class='brace'>}</em>;
<a id='L69' name='L69'></a> 69
<a id='L70' name='L70'></a> 70 <em class='comment'>/*** forward declarations (file scope functions) *************************************************/</em>
<a id='L71' name='L71'></a> 71
<a id='L72' name='L72'></a> 72 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong> <a href='../S/src--background.c.html#L188' title='Defined at 188 in src/background.c.'>background_attention</a> (<strong class='reserved'>int</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, <strong class='reserved'>void</strong> *<a href='../Y/closure.html' title='Multiple used in 4 places.'>closure</a>);
<a id='L73' name='L73'></a> 73
<a id='L74' name='L74'></a> 74 <em class='comment'>/*** file scope variables ************************************************************************/</em>
<a id='L75' name='L75'></a> 75
<a id='L76' name='L76'></a> 76 <em class='comment'>/* File descriptor for talking to our parent */</em>
<a id='L77' name='L77'></a> 77 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong> <a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>;
<a id='L78' name='L78'></a> 78
<a id='L79' name='L79'></a> 79 <em class='comment'>/* File descriptor for messages from our parent */</em>
<a id='L80' name='L80'></a> 80 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong> <a href='../Y/from_parent_fd.html' title='Multiple used in 6 places.'>from_parent_fd</a>;
<a id='L81' name='L81'></a> 81
<a id='L82' name='L82'></a> 82 <a href='../D/TaskList.html' title='Multiple defined in 2 places.'>TaskList</a> *<a href='../Y/task_list.html' title='Multiple used in 8 places.'>task_list</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L83' name='L83'></a> 83
<a id='L84' name='L84'></a> 84 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L85' name='L85'></a> 85 <em class='comment'>/*** file scope functions ************************************************************************/</em>
<a id='L86' name='L86'></a> 86 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L87' name='L87'></a> 87
<a id='L88' name='L88'></a> 88 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L89' name='L89'></a> 89 <a href='../S/src--background.c.html#L587' title='Referred from 587 in src/background.c.'>register_task_running</a> (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../Y/pid_t.html' title='Multiple used in 24 places.'>pid_t</a> <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>, <strong class='reserved'>int</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, <strong class='reserved'>int</strong> <a href='../Y/to_child.html' title='Multiple used in 2 places.'>to_child</a>, <strong class='reserved'>char</strong> *<a href='../Y/info.html' title='Multiple used in 122 places.'>info</a>)
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L108'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+89 src/background.c' /> */</em>
<a id='L90' name='L90'></a> 90 <em class='brace'>{</em>
<a id='L91' name='L91'></a> 91 <a href='../D/TaskList.html' title='Multiple defined in 2 places.'>TaskList</a> *<a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>;
<a id='L92' name='L92'></a> 92
<a id='L93' name='L93'></a> 93 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a> = <a href='../Y/g_new.html' title='Multiple used in 58 places.'>g_new</a> (<a href='../D/TaskList.html' title='Multiple defined in 2 places.'>TaskList</a>, 1);
<a id='L94' name='L94'></a> 94 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>-&gt;<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a> = <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>;
<a id='L95' name='L95'></a> 95 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>-&gt;<a href='../Y/info.html' title='Multiple used in 122 places.'>info</a> = <a href='../Y/info.html' title='Multiple used in 122 places.'>info</a>;
<a id='L96' name='L96'></a> 96 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>-&gt;<a href='../Y/state.html' title='Multiple used in 274 places.'>state</a> = <a href='../S/src--background.h.html#L15' title='Defined at 15 in src/background.h.'>Task_Running</a>;
<a id='L97' name='L97'></a> 97 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>-&gt;<a href='../Y/next.html' title='Multiple used in 212 places.'>next</a> = <a href='../Y/task_list.html' title='Multiple used in 8 places.'>task_list</a>;
<a id='L98' name='L98'></a> 98 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>-&gt;<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a> = <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>;
<a id='L99' name='L99'></a> 99 <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>-&gt;<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a> = <a href='../Y/to_child.html' title='Multiple used in 2 places.'>to_child</a>;
<a id='L100' name='L100'></a> 100 <a href='../Y/task_list.html' title='Multiple used in 8 places.'>task_list</a> = <a href='../Y/new.html' title='Multiple used in 66 places.'>new</a>;
<a id='L101' name='L101'></a> 101
<a id='L102' name='L102'></a> 102 <a href='../S/lib--tty--key.c.html#L1373' title='Defined at 1373 in lib/tty/key.c.'>add_select_channel</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, <a href='../S/src--background.c.html#L188' title='Defined at 188 in src/background.c.'>background_attention</a>, <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>);
<a id='L103' name='L103'></a> 103 <em class='brace'>}</em>
<a id='L104' name='L104'></a> 104
<a id='L105' name='L105'></a> 105 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L106' name='L106'></a> 106
<a id='L107' name='L107'></a> 107 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong>
<a id='L108' name='L108'></a> 108 <a href='../R/destroy_task.html' title='Multiple referred from 2 places.'>destroy_task</a> (<a href='../Y/pid_t.html' title='Multiple used in 24 places.'>pid_t</a> <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>)
<em class='comment'>/* <a href='#L89'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L177'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+108 src/background.c' /> */</em>
<a id='L109' name='L109'></a> 109 <em class='brace'>{</em>
<a id='L110' name='L110'></a> 110 <a href='../D/TaskList.html' title='Multiple defined in 2 places.'>TaskList</a> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/task_list.html' title='Multiple used in 8 places.'>task_list</a>;
<a id='L111' name='L111'></a> 111 <a href='../D/TaskList.html' title='Multiple defined in 2 places.'>TaskList</a> *<a href='../Y/prev.html' title='Multiple used in 95 places.'>prev</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L112' name='L112'></a> 112
<a id='L113' name='L113'></a> 113 <strong class='reserved'>while</strong> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L114' name='L114'></a> 114 <em class='brace'>{</em>
<a id='L115' name='L115'></a> 115 <strong class='reserved'>if</strong> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a> == <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>)
<a id='L116' name='L116'></a> 116 <em class='brace'>{</em>
<a id='L117' name='L117'></a> 117 <strong class='reserved'>int</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>;
<a id='L118' name='L118'></a> 118
<a id='L119' name='L119'></a> 119 <strong class='reserved'>if</strong> (<a href='../Y/prev.html' title='Multiple used in 95 places.'>prev</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L120' name='L120'></a> 120 <a href='../Y/prev.html' title='Multiple used in 95 places.'>prev</a>-&gt;<a href='../Y/next.html' title='Multiple used in 212 places.'>next</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/next.html' title='Multiple used in 212 places.'>next</a>;
<a id='L121' name='L121'></a> 121 <strong class='reserved'>else</strong>
<a id='L122' name='L122'></a> 122 <a href='../Y/task_list.html' title='Multiple used in 8 places.'>task_list</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/next.html' title='Multiple used in 212 places.'>next</a>;
<a id='L123' name='L123'></a> 123 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/info.html' title='Multiple used in 122 places.'>info</a>);
<a id='L124' name='L124'></a> 124 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>);
<a id='L125' name='L125'></a> 125 <strong class='reserved'>return</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>;
<a id='L126' name='L126'></a> 126 <em class='brace'>}</em>
<a id='L127' name='L127'></a> 127 <a href='../Y/prev.html' title='Multiple used in 95 places.'>prev</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
<a id='L128' name='L128'></a> 128 <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/next.html' title='Multiple used in 212 places.'>next</a>;
<a id='L129' name='L129'></a> 129 <em class='brace'>}</em>
<a id='L130' name='L130'></a> 130
<a id='L131' name='L131'></a> 131 <em class='comment'>// pid not found</em>
<a id='L132' name='L132'></a> 132 <strong class='reserved'>return</strong> (-1);
<a id='L133' name='L133'></a> 133 <em class='brace'>}</em>
<a id='L134' name='L134'></a> 134
<a id='L135' name='L135'></a> 135 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L136' name='L136'></a> 136 <em class='comment'>/* {{{ Parent handlers */</em>
<a id='L137' name='L137'></a> 137
<a id='L138' name='L138'></a> 138 <em class='comment'>/* Parent/child protocol</em>
<a id='L139' name='L139'></a> 139 <em class='comment'> *</em>
<a id='L140' name='L140'></a> 140 <em class='comment'> * the child (the background) process send the following:</em>
<a id='L141' name='L141'></a> 141 <em class='comment'> * void *routine -- routine to be invoked in the parent</em>
<a id='L142' name='L142'></a> 142 <em class='comment'> * int nargc -- number of arguments</em>
<a id='L143' name='L143'></a> 143 <em class='comment'> * int type -- Return argument type.</em>
<a id='L144' name='L144'></a> 144 <em class='comment'> *</em>
<a id='L145' name='L145'></a> 145 <em class='comment'> * If the routine is zero, then it is a way to tell the parent</em>
<a id='L146' name='L146'></a> 146 <em class='comment'> * that the process is dying.</em>
<a id='L147' name='L147'></a> 147 <em class='comment'> *</em>
<a id='L148' name='L148'></a> 148 <em class='comment'> * nargc arguments in the following format:</em>
<a id='L149' name='L149'></a> 149 <em class='comment'> * int size of the coming block</em>
<a id='L150' name='L150'></a> 150 <em class='comment'> * size bytes with the block</em>
<a id='L151' name='L151'></a> 151 <em class='comment'> *</em>
<a id='L152' name='L152'></a> 152 <em class='comment'> * Now, the parent loads all those and then invokes</em>
<a id='L153' name='L153'></a> 153 <em class='comment'> * the routine with pointers to the information passed</em>
<a id='L154' name='L154'></a> 154 <em class='comment'> * (we just support pointers).</em>
<a id='L155' name='L155'></a> 155 <em class='comment'> *</em>
<a id='L156' name='L156'></a> 156 <em class='comment'> * If the return type is integer:</em>
<a id='L157' name='L157'></a> 157 <em class='comment'> *</em>
<a id='L158' name='L158'></a> 158 <em class='comment'> * the parent then writes an int to the child with</em>
<a id='L159' name='L159'></a> 159 <em class='comment'> * the return value from the routine and the values</em>
<a id='L160' name='L160'></a> 160 <em class='comment'> * of any global variable that is modified in the parent</em>
<a id='L161' name='L161'></a> 161 <em class='comment'> * currently: do_append and recursive_result.</em>
<a id='L162' name='L162'></a> 162 <em class='comment'> *</em>
<a id='L163' name='L163'></a> 163 <em class='comment'> * If the return type is a string:</em>
<a id='L164' name='L164'></a> 164 <em class='comment'> *</em>
<a id='L165' name='L165'></a> 165 <em class='comment'> * the parent writes the resulting string length</em>
<a id='L166' name='L166'></a> 166 <em class='comment'> * if the result string was NULL or the empty string,</em>
<a id='L167' name='L167'></a> 167 <em class='comment'> * then the length is zero.</em>
<a id='L168' name='L168'></a> 168 <em class='comment'> * The parent then writes the string length and frees</em>
<a id='L169' name='L169'></a> 169 <em class='comment'> * the result string.</em>
<a id='L170' name='L170'></a> 170 <em class='comment'> */</em>
<a id='L171' name='L171'></a> 171 <em class='comment'>/*</em>
<a id='L172' name='L172'></a> 172 <em class='comment'> * Receive requests from background process and invoke the</em>
<a id='L173' name='L173'></a> 173 <em class='comment'> * specified routine</em>
<a id='L174' name='L174'></a> 174 <em class='comment'> */</em>
<a id='L175' name='L175'></a> 175
<a id='L176' name='L176'></a> 176 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong>
<a id='L177' name='L177'></a> 177 <a href='../R/reading_failed.html' title='Multiple referred from 4 places.'>reading_failed</a> (<strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <strong class='reserved'>char</strong> **<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)
<em class='comment'>/* <a href='#L108'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L188'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+177 src/background.c' /> */</em>
<a id='L178' name='L178'></a> 178 <em class='brace'>{</em>
<a id='L179' name='L179'></a> 179 <strong class='reserved'>while</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &gt;= 0)
<a id='L180' name='L180'></a> 180 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>--]);
<a id='L181' name='L181'></a> 181 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Background protocol error"), "%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Reading failed"));
<a id='L182' name='L182'></a> 182 <strong class='reserved'>return</strong> 0;
<a id='L183' name='L183'></a> 183 <em class='brace'>}</em>
<a id='L184' name='L184'></a> 184
<a id='L185' name='L185'></a> 185 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L186' name='L186'></a> 186
<a id='L187' name='L187'></a> 187 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong>
<a id='L188' name='L188'></a> 188 <a href='../R/background_attention.html' title='Multiple referred from 2 places.'>background_attention</a> (<strong class='reserved'>int</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, <strong class='reserved'>void</strong> *<a href='../Y/closure.html' title='Multiple used in 4 places.'>closure</a>)
<em class='comment'>/* <a href='#L177'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L405'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+188 src/background.c' /> */</em>
<a id='L189' name='L189'></a> 189 <em class='brace'>{</em>
<a id='L190' name='L190'></a> 190 <a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>;
<a id='L191' name='L191'></a> 191 <strong class='reserved'>int</strong> <a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>;
<a id='L192' name='L192'></a> 192 <strong class='reserved'>union</strong>
<a id='L193' name='L193'></a> 193 <em class='brace'>{</em>
<a id='L194' name='L194'></a> 194 <strong class='reserved'>int</strong> (*<a href='../Y/have_ctx0.html' title='Multiple used in 2 places.'>have_ctx0</a>) (<strong class='reserved'>int</strong>);
<a id='L195' name='L195'></a> 195 <strong class='reserved'>int</strong> (*<a href='../Y/have_ctx1.html' title='Multiple used in 2 places.'>have_ctx1</a>) (<strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *);
<a id='L196' name='L196'></a> 196 <strong class='reserved'>int</strong> (*<a href='../Y/have_ctx2.html' title='Multiple used in 2 places.'>have_ctx2</a>) (<strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L197' name='L197'></a> 197 <strong class='reserved'>int</strong> (*<a href='../Y/have_ctx3.html' title='Multiple used in 2 places.'>have_ctx3</a>) (<strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L198' name='L198'></a> 198 <strong class='reserved'>int</strong> (*<a href='../Y/have_ctx4.html' title='Multiple used in 2 places.'>have_ctx4</a>) (<strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L199' name='L199'></a> 199
<a id='L200' name='L200'></a> 200 <strong class='reserved'>int</strong> (*<a href='../Y/non_have_ctx0.html' title='Multiple used in 2 places.'>non_have_ctx0</a>) (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *, <strong class='reserved'>int</strong>);
<a id='L201' name='L201'></a> 201 <strong class='reserved'>int</strong> (*<a href='../Y/non_have_ctx1.html' title='Multiple used in 2 places.'>non_have_ctx1</a>) (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *, <strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *);
<a id='L202' name='L202'></a> 202 <strong class='reserved'>int</strong> (*<a href='../Y/non_have_ctx2.html' title='Multiple used in 2 places.'>non_have_ctx2</a>) (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *, <strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L203' name='L203'></a> 203 <strong class='reserved'>int</strong> (*<a href='../Y/non_have_ctx3.html' title='Multiple used in 2 places.'>non_have_ctx3</a>) (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *, <strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L204' name='L204'></a> 204 <strong class='reserved'>int</strong> (*<a href='../Y/non_have_ctx4.html' title='Multiple used in 2 places.'>non_have_ctx4</a>) (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *, <strong class='reserved'>int</strong>, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L205' name='L205'></a> 205
<a id='L206' name='L206'></a> 206 <strong class='reserved'>char</strong> *(*<a href='../Y/ret_str0.html' title='Multiple used in 2 places.'>ret_str0</a>) (<strong class='reserved'>void</strong>);
<a id='L207' name='L207'></a> 207 <strong class='reserved'>char</strong> *(*<a href='../Y/ret_str1.html' title='Multiple used in 2 places.'>ret_str1</a>) (<strong class='reserved'>char</strong> *);
<a id='L208' name='L208'></a> 208 <strong class='reserved'>char</strong> *(*<a href='../Y/ret_str2.html' title='Multiple used in 2 places.'>ret_str2</a>) (<strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L209' name='L209'></a> 209 <strong class='reserved'>char</strong> *(*<a href='../Y/ret_str3.html' title='Multiple used in 2 places.'>ret_str3</a>) (<strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L210' name='L210'></a> 210 <strong class='reserved'>char</strong> *(*<a href='../Y/ret_str4.html' title='Multiple used in 2 places.'>ret_str4</a>) (<strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *, <strong class='reserved'>char</strong> *);
<a id='L211' name='L211'></a> 211
<a id='L212' name='L212'></a> 212 <strong class='reserved'>void</strong> *<a href='../Y/pointer.html' title='Multiple used in 4 places.'>pointer</a>;
<a id='L213' name='L213'></a> 213 <em class='brace'>}</em> <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>;
<a id='L214' name='L214'></a> 214 <em class='comment'>// void *routine;</em>
<a id='L215' name='L215'></a> 215 <strong class='reserved'>int</strong> <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>;
<a id='L216' name='L216'></a> 216 <strong class='reserved'>char</strong> *<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[<a href='../S/src--background.c.html#L58' title='Defined at 58 in src/background.c.'>MAXCALLARGS</a>];
<a id='L217' name='L217'></a> 217 <a href='../Y/ssize_t.html' title='Multiple used in 180 places.'>ssize_t</a> <a href='../Y/bytes.html' title='Multiple used in 66 places.'>bytes</a>, <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L218' name='L218'></a> 218 <a href='../D/TaskList.html' title='Multiple defined in 2 places.'>TaskList</a> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>;
<a id='L219' name='L219'></a> 219 <strong class='reserved'>int</strong> <a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a> = -1;
<a id='L220' name='L220'></a> 220 <strong class='reserved'>enum</strong> <a href='../S/src--background.c.html#L64' title='Defined at 64 in src/background.c.'>ReturnType</a> <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>;
<a id='L221' name='L221'></a> 221 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/background_process_error.html' title='Multiple used in 4 places.'>background_process_error</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Background process error");
<a id='L222' name='L222'></a> 222
<a id='L223' name='L223'></a> 223 <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a> = <a href='../Y/closure.html' title='Multiple used in 4 places.'>closure</a>;
<a id='L224' name='L224'></a> 224
<a id='L225' name='L225'></a> 225 <a href='../Y/bytes.html' title='Multiple used in 66 places.'>bytes</a> = <a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, &amp;<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/pointer.html' title='Multiple used in 4 places.'>pointer</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>));
<a id='L226' name='L226'></a> 226 <strong class='reserved'>if</strong> (<a href='../Y/bytes.html' title='Multiple used in 66 places.'>bytes</a> == -1 || (<a href='../Y/size_t.html' title='Multiple used in 711 places.'>size_t</a>) <a href='../Y/bytes.html' title='Multiple used in 66 places.'>bytes</a> &lt; (<strong class='reserved'>sizeof</strong> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>)))
<a id='L227' name='L227'></a> 227 <em class='brace'>{</em>
<a id='L228' name='L228'></a> 228 <strong class='reserved'>int</strong> <a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>;
<a id='L229' name='L229'></a> 229
<a id='L230' name='L230'></a> 230 <a href='../S/src--background.c.html#L491' title='Defined at 491 in src/background.c.'>unregister_task_running</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>-&gt;<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>, <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>);
<a id='L231' name='L231'></a> 231
<a id='L232' name='L232'></a> 232 <strong class='reserved'>if</strong> (<a href='../Y/waitpid.html' title='Multiple used in 8 places.'>waitpid</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>-&gt;<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>, &amp;<a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>, <a href='../Y/WNOHANG.html' title='Multiple used in 4 places.'>WNOHANG</a>) == 0)
<a id='L233' name='L233'></a> 233 <em class='brace'>{</em>
<a id='L234' name='L234'></a> 234 <em class='comment'>// the process is still running, but it misbehaves - kill it</em>
<a id='L235' name='L235'></a> 235 <a href='../Y/kill.html' title='Multiple used in 10 places.'>kill</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>-&gt;<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>, SIGTERM);
<a id='L236' name='L236'></a> 236 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../Y/background_process_error.html' title='Multiple used in 4 places.'>background_process_error</a>, "%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Unknown error in child"));
<a id='L237' name='L237'></a> 237 <strong class='reserved'>return</strong> 0;
<a id='L238' name='L238'></a> 238 <em class='brace'>}</em>
<a id='L239' name='L239'></a> 239
<a id='L240' name='L240'></a> 240 <em class='comment'>// 0 means happy end</em>
<a id='L241' name='L241'></a> 241 <strong class='reserved'>if</strong> (<a href='../S/src--subshell--common.c.html#L143' title='Defined at 143 in src/subshell/common.c.'>WIFEXITED</a> (<a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>) &amp;&amp; (<a href='../S/src--subshell--common.c.html#L139' title='Defined at 139 in src/subshell/common.c.'>WEXITSTATUS</a> (<a href='../Y/status.html' title='Multiple used in 186 places.'>status</a>) == 0))
<a id='L242' name='L242'></a> 242 <strong class='reserved'>return</strong> 0;
<a id='L243' name='L243'></a> 243
<a id='L244' name='L244'></a> 244 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../Y/background_process_error.html' title='Multiple used in 4 places.'>background_process_error</a>, "%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Child died unexpectedly"));
<a id='L245' name='L245'></a> 245
<a id='L246' name='L246'></a> 246 <strong class='reserved'>return</strong> 0;
<a id='L247' name='L247'></a> 247 <em class='brace'>}</em>
<a id='L248' name='L248'></a> 248
<a id='L249' name='L249'></a> 249 <strong class='reserved'>if</strong> (<a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, &amp;<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>)) != <strong class='reserved'>sizeof</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>)
<a id='L250' name='L250'></a> 250 || <a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, &amp;<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>)) != <strong class='reserved'>sizeof</strong> (<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>)
<a id='L251' name='L251'></a> 251 || <a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, &amp;<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>)) != <strong class='reserved'>sizeof</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>))
<a id='L252' name='L252'></a> 252 <strong class='reserved'>return</strong> <a href='../S/src--background.c.html#L177' title='Defined at 177 in src/background.c.'>reading_failed</a> (-1, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
<a id='L253' name='L253'></a> 253
<a id='L254' name='L254'></a> 254 <strong class='reserved'>if</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a> &gt; <a href='../S/src--background.c.html#L58' title='Defined at 58 in src/background.c.'>MAXCALLARGS</a>)
<a id='L255' name='L255'></a> 255 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Background protocol error"), "%s",
<a id='L256' name='L256'></a> 256 <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Background process sent us a request for more arguments\n"
<a id='L257' name='L257'></a> 257 "than we can handle."));
<a id='L258' name='L258'></a> 258
<a id='L259' name='L259'></a> 259 <strong class='reserved'>if</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a> != 0 &amp;&amp; <a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <strong class='reserved'>sizeof</strong> (*<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>)) != <strong class='reserved'>sizeof</strong> (*<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>))
<a id='L260' name='L260'></a> 260 <strong class='reserved'>return</strong> <a href='../S/src--background.c.html#L177' title='Defined at 177 in src/background.c.'>reading_failed</a> (-1, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
<a id='L261' name='L261'></a> 261
<a id='L262' name='L262'></a> 262 <strong class='reserved'>for</strong> (<strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L263' name='L263'></a> 263 <em class='brace'>{</em>
<a id='L264' name='L264'></a> 264 <strong class='reserved'>int</strong> <a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>;
<a id='L265' name='L265'></a> 265
<a id='L266' name='L266'></a> 266 <strong class='reserved'>if</strong> (<a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, &amp;<a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>)) != <strong class='reserved'>sizeof</strong> (<a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>))
<a id='L267' name='L267'></a> 267 <strong class='reserved'>return</strong> <a href='../S/src--background.c.html#L177' title='Defined at 177 in src/background.c.'>reading_failed</a> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> - 1, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
<a id='L268' name='L268'></a> 268
<a id='L269' name='L269'></a> 269 <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>] = <a href='../Y/g_malloc.html' title='Multiple used in 42 places.'>g_malloc</a> (<a href='../Y/size.html' title='Multiple used in 385 places.'>size</a> + 1);
<a id='L270' name='L270'></a> 270
<a id='L271' name='L271'></a> 271 <strong class='reserved'>if</strong> (<a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>], <a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>) != <a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>)
<a id='L272' name='L272'></a> 272 <strong class='reserved'>return</strong> <a href='../S/src--background.c.html#L177' title='Defined at 177 in src/background.c.'>reading_failed</a> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
<a id='L273' name='L273'></a> 273
<a id='L274' name='L274'></a> 274 <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>][<a href='../Y/size.html' title='Multiple used in 385 places.'>size</a>] = '\0'; <em class='comment'>// NULL terminate the blocks (they could be strings)</em>
<a id='L275' name='L275'></a> 275 <em class='brace'>}</em>
<a id='L276' name='L276'></a> 276
<a id='L277' name='L277'></a> 277 <em class='comment'>// Find child task info by descriptor</em>
<a id='L278' name='L278'></a> 278 <em class='comment'>// Find before call, because process can destroy self after</em>
<a id='L279' name='L279'></a> 279 <strong class='reserved'>for</strong> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/task_list.html' title='Multiple used in 8 places.'>task_list</a>; <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>; <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/next.html' title='Multiple used in 212 places.'>next</a>)
<a id='L280' name='L280'></a> 280 <strong class='reserved'>if</strong> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a> == <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>)
<a id='L281' name='L281'></a> 281 <strong class='reserved'>break</strong>;
<a id='L282' name='L282'></a> 282
<a id='L283' name='L283'></a> 283 <strong class='reserved'>if</strong> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L284' name='L284'></a> 284 <a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a> = <a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>-&gt;<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a>;
<a id='L285' name='L285'></a> 285
<a id='L286' name='L286'></a> 286 <strong class='reserved'>if</strong> (<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a> == -1)
<a id='L287' name='L287'></a> 287 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../Y/background_process_error.html' title='Multiple used in 4 places.'>background_process_error</a>, "%s", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Unknown error in child"));
<a id='L288' name='L288'></a> 288 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a> == <a href='../S/src--background.c.html#L67' title='Defined at 67 in src/background.c.'>Return_Integer</a>)
<a id='L289' name='L289'></a> 289 <em class='brace'>{</em>
<a id='L290' name='L290'></a> 290 <em class='comment'>// Handle the call</em>
<a id='L291' name='L291'></a> 291
<a id='L292' name='L292'></a> 292 <strong class='reserved'>int</strong> <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = 0;
<a id='L293' name='L293'></a> 293
<a id='L294' name='L294'></a> 294 <strong class='reserved'>if</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a> == 0)
<a id='L295' name='L295'></a> 295 <strong class='reserved'>switch</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>)
<a id='L296' name='L296'></a> 296 <em class='brace'>{</em>
<a id='L297' name='L297'></a> 297 <strong class='reserved'>case</strong> 0:
<a id='L298' name='L298'></a> 298 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/have_ctx0.html' title='Multiple used in 2 places.'>have_ctx0</a> (<a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>);
<a id='L299' name='L299'></a> 299 <strong class='reserved'>break</strong>;
<a id='L300' name='L300'></a> 300 <strong class='reserved'>case</strong> 1:
<a id='L301' name='L301'></a> 301 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/have_ctx1.html' title='Multiple used in 2 places.'>have_ctx1</a> (<a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0]);
<a id='L302' name='L302'></a> 302 <strong class='reserved'>break</strong>;
<a id='L303' name='L303'></a> 303 <strong class='reserved'>case</strong> 2:
<a id='L304' name='L304'></a> 304 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/have_ctx2.html' title='Multiple used in 2 places.'>have_ctx2</a> (<a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1]);
<a id='L305' name='L305'></a> 305 <strong class='reserved'>break</strong>;
<a id='L306' name='L306'></a> 306 <strong class='reserved'>case</strong> 3:
<a id='L307' name='L307'></a> 307 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/have_ctx3.html' title='Multiple used in 2 places.'>have_ctx3</a> (<a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[2]);
<a id='L308' name='L308'></a> 308 <strong class='reserved'>break</strong>;
<a id='L309' name='L309'></a> 309 <strong class='reserved'>case</strong> 4:
<a id='L310' name='L310'></a> 310 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/have_ctx4.html' title='Multiple used in 2 places.'>have_ctx4</a> (<a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[2], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[3]);
<a id='L311' name='L311'></a> 311 <strong class='reserved'>break</strong>;
<a id='L312' name='L312'></a> 312 <strong class='reserved'>default</strong>:
<a id='L313' name='L313'></a> 313 <strong class='reserved'>break</strong>;
<a id='L314' name='L314'></a> 314 <em class='brace'>}</em>
<a id='L315' name='L315'></a> 315 <strong class='reserved'>else</strong>
<a id='L316' name='L316'></a> 316 <strong class='reserved'>switch</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>)
<a id='L317' name='L317'></a> 317 <em class='brace'>{</em>
<a id='L318' name='L318'></a> 318 <strong class='reserved'>case</strong> 0:
<a id='L319' name='L319'></a> 319 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/non_have_ctx0.html' title='Multiple used in 2 places.'>non_have_ctx0</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>);
<a id='L320' name='L320'></a> 320 <strong class='reserved'>break</strong>;
<a id='L321' name='L321'></a> 321 <strong class='reserved'>case</strong> 1:
<a id='L322' name='L322'></a> 322 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/non_have_ctx1.html' title='Multiple used in 2 places.'>non_have_ctx1</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0]);
<a id='L323' name='L323'></a> 323 <strong class='reserved'>break</strong>;
<a id='L324' name='L324'></a> 324 <strong class='reserved'>case</strong> 2:
<a id='L325' name='L325'></a> 325 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/non_have_ctx2.html' title='Multiple used in 2 places.'>non_have_ctx2</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1]);
<a id='L326' name='L326'></a> 326 <strong class='reserved'>break</strong>;
<a id='L327' name='L327'></a> 327 <strong class='reserved'>case</strong> 3:
<a id='L328' name='L328'></a> 328 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/non_have_ctx3.html' title='Multiple used in 2 places.'>non_have_ctx3</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[2]);
<a id='L329' name='L329'></a> 329 <strong class='reserved'>break</strong>;
<a id='L330' name='L330'></a> 330 <strong class='reserved'>case</strong> 4:
<a id='L331' name='L331'></a> 331 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> =
<a id='L332' name='L332'></a> 332 <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/non_have_ctx4.html' title='Multiple used in 2 places.'>non_have_ctx4</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../S/src--filemanager--filegui.h.html#L60' title='Defined at 60 in src/filemanager/filegui.h.'>Background</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[2], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[3]);
<a id='L333' name='L333'></a> 333 <strong class='reserved'>break</strong>;
<a id='L334' name='L334'></a> 334 <strong class='reserved'>default</strong>:
<a id='L335' name='L335'></a> 335 <strong class='reserved'>break</strong>;
<a id='L336' name='L336'></a> 336 <em class='brace'>}</em>
<a id='L337' name='L337'></a> 337
<a id='L338' name='L338'></a> 338 <em class='comment'>// Send the result code and the value for shared variables</em>
<a id='L339' name='L339'></a> 339 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a>, &amp;<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>));
<a id='L340' name='L340'></a> 340 <strong class='reserved'>if</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a> != 0)
<a id='L341' name='L341'></a> 341 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a>, <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <strong class='reserved'>sizeof</strong> (*<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>));
<a id='L342' name='L342'></a> 342 <em class='brace'>}</em>
<a id='L343' name='L343'></a> 343 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a> == <a href='../S/src--background.c.html#L66' title='Defined at 66 in src/background.c.'>Return_String</a>)
<a id='L344' name='L344'></a> 344 <em class='brace'>{</em>
<a id='L345' name='L345'></a> 345 <strong class='reserved'>int</strong> <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = 0;
<a id='L346' name='L346'></a> 346 <strong class='reserved'>char</strong> *<a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L347' name='L347'></a> 347
<a id='L348' name='L348'></a> 348 <em class='comment'>/* FIXME: string routines should also use the Foreground/Background</em>
<a id='L349' name='L349'></a> 349 <em class='comment'> * parameter. Currently, this is not used here</em>
<a id='L350' name='L350'></a> 350 <em class='comment'> */</em>
<a id='L351' name='L351'></a> 351 <strong class='reserved'>switch</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>)
<a id='L352' name='L352'></a> 352 <em class='brace'>{</em>
<a id='L353' name='L353'></a> 353 <strong class='reserved'>case</strong> 0:
<a id='L354' name='L354'></a> 354 <a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/ret_str0.html' title='Multiple used in 2 places.'>ret_str0</a> ();
<a id='L355' name='L355'></a> 355 <strong class='reserved'>break</strong>;
<a id='L356' name='L356'></a> 356 <strong class='reserved'>case</strong> 1:
<a id='L357' name='L357'></a> 357 <a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/ret_str1.html' title='Multiple used in 2 places.'>ret_str1</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0]);
<a id='L358' name='L358'></a> 358 <strong class='reserved'>break</strong>;
<a id='L359' name='L359'></a> 359 <strong class='reserved'>case</strong> 2:
<a id='L360' name='L360'></a> 360 <a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/ret_str2.html' title='Multiple used in 2 places.'>ret_str2</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1]);
<a id='L361' name='L361'></a> 361 <strong class='reserved'>break</strong>;
<a id='L362' name='L362'></a> 362 <strong class='reserved'>case</strong> 3:
<a id='L363' name='L363'></a> 363 <a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/ret_str3.html' title='Multiple used in 2 places.'>ret_str3</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[2]);
<a id='L364' name='L364'></a> 364 <strong class='reserved'>break</strong>;
<a id='L365' name='L365'></a> 365 <strong class='reserved'>case</strong> 4:
<a id='L366' name='L366'></a> 366 <a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> = <a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>.<a href='../Y/ret_str4.html' title='Multiple used in 2 places.'>ret_str4</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[0], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[1], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[2], <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[3]);
<a id='L367' name='L367'></a> 367 <strong class='reserved'>break</strong>;
<a id='L368' name='L368'></a> 368 <strong class='reserved'>default</strong>:
<a id='L369' name='L369'></a> 369 <a href='../Y/g_assert_not_reached.html' title='Multiple used in 5 places.'>g_assert_not_reached</a> ();
<a id='L370' name='L370'></a> 370 <em class='brace'>}</em>
<a id='L371' name='L371'></a> 371
<a id='L372' name='L372'></a> 372 <strong class='reserved'>if</strong> (<a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L373' name='L373'></a> 373 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a>, &amp;<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>));
<a id='L374' name='L374'></a> 374 <strong class='reserved'>else</strong>
<a id='L375' name='L375'></a> 375 <em class='brace'>{</em>
<a id='L376' name='L376'></a> 376 <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = (<strong class='reserved'>int</strong>) <a href='../Y/strlen.html' title='Multiple used in 193 places.'>strlen</a> (<a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a>);
<a id='L377' name='L377'></a> 377 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a>, &amp;<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>));
<a id='L378' name='L378'></a> 378 <strong class='reserved'>if</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> != 0)
<a id='L379' name='L379'></a> 379 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/to_child_fd.html' title='Multiple used in 10 places.'>to_child_fd</a>, <a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a>, <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>);
<a id='L380' name='L380'></a> 380 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/resstr.html' title='Multiple used in 10 places.'>resstr</a>);
<a id='L381' name='L381'></a> 381 <em class='brace'>}</em>
<a id='L382' name='L382'></a> 382 <em class='brace'>}</em>
<a id='L383' name='L383'></a> 383
<a id='L384' name='L384'></a> 384 <strong class='reserved'>for</strong> (<strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L385' name='L385'></a> 385 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>]);
<a id='L386' name='L386'></a> 386
<a id='L387' name='L387'></a> 387 <a href='../S/lib--widget--dialog-switch.c.html#L368' title='Defined at 368 in lib/widget/dialog-switch.c.'>repaint_screen</a> ();
<a id='L388' name='L388'></a> 388
<a id='L389' name='L389'></a> 389 (<strong class='reserved'>void</strong>) <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L390' name='L390'></a> 390
<a id='L391' name='L391'></a> 391 <strong class='reserved'>return</strong> 0;
<a id='L392' name='L392'></a> 392 <em class='brace'>}</em>
<a id='L393' name='L393'></a> 393
<a id='L394' name='L394'></a> 394 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L395' name='L395'></a> 395 <em class='comment'>/* }}} */</em>
<a id='L396' name='L396'></a> 396
<a id='L397' name='L397'></a> 397 <em class='comment'>/* {{{ client RPC routines */</em>
<a id='L398' name='L398'></a> 398
<a id='L399' name='L399'></a> 399 <em class='comment'>/* Sends the header for a call to a routine in the parent process. If the file</em>
<a id='L400' name='L400'></a> 400 <em class='comment'> * operation context is not NULL, then it requests that the first parameter of</em>
<a id='L401' name='L401'></a> 401 <em class='comment'> * the call be a file operation context.</em>
<a id='L402' name='L402'></a> 402 <em class='comment'> */</em>
<a id='L403' name='L403'></a> 403
<a id='L404' name='L404'></a> 404 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L405' name='L405'></a> 405 <a href='../R/parent_call_header.html' title='Multiple referred from 2 places.'>parent_call_header</a> (<strong class='reserved'>void</strong> *<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <strong class='reserved'>int</strong> <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <strong class='reserved'>enum</strong> <a href='../S/src--background.c.html#L64' title='Defined at 64 in src/background.c.'>ReturnType</a> <a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>, <a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>)
<em class='comment'>/* <a href='#L188'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L425'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+405 src/background.c' /> */</em>
<a id='L406' name='L406'></a> 406 <em class='brace'>{</em>
<a id='L407' name='L407'></a> 407 <strong class='reserved'>int</strong> <a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>;
<a id='L408' name='L408'></a> 408 <a href='../Y/ssize_t.html' title='Multiple used in 180 places.'>ssize_t</a> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L409' name='L409'></a> 409
<a id='L410' name='L410'></a> 410 <a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a> = <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> ? 1 : 0;
<a id='L411' name='L411'></a> 411
<a id='L412' name='L412'></a> 412 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, &amp;<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>));
<a id='L413' name='L413'></a> 413 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, &amp;<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>));
<a id='L414' name='L414'></a> 414 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, &amp;<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/type.html' title='Multiple used in 295 places.'>type</a>));
<a id='L415' name='L415'></a> 415 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, &amp;<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a>));
<a id='L416' name='L416'></a> 416 <strong class='reserved'>if</strong> (<a href='../Y/have_ctx.html' title='Multiple used in 9 places.'>have_ctx</a> != 0)
<a id='L417' name='L417'></a> 417 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <strong class='reserved'>sizeof</strong> (*<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>));
<a id='L418' name='L418'></a> 418
<a id='L419' name='L419'></a> 419 (<strong class='reserved'>void</strong>) <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L420' name='L420'></a> 420 <em class='brace'>}</em>
<a id='L421' name='L421'></a> 421
<a id='L422' name='L422'></a> 422 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L423' name='L423'></a> 423
<a id='L424' name='L424'></a> 424 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong>
<a id='L425' name='L425'></a> 425 <a href='../R/parent_va_call.html' title='Multiple referred from 2 places.'>parent_va_call</a> (<strong class='reserved'>void</strong> *<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>, <strong class='reserved'>int</strong> <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../Y/va_list.html' title='Multiple used in 36 places.'>va_list</a> <a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>)
<em class='comment'>/* <a href='#L405'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L455'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+425 src/background.c' /> */</em>
<a id='L426' name='L426'></a> 426 <em class='brace'>{</em>
<a id='L427' name='L427'></a> 427 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
<a id='L428' name='L428'></a> 428 <a href='../Y/ssize_t.html' title='Multiple used in 180 places.'>ssize_t</a> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L429' name='L429'></a> 429 <a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a> = (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *) <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>;
<a id='L430' name='L430'></a> 430
<a id='L431' name='L431'></a> 431 <a href='../S/src--background.c.html#L405' title='Defined at 405 in src/background.c.'>parent_call_header</a> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../S/src--background.c.html#L67' title='Defined at 67 in src/background.c.'>Return_Integer</a>, <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>);
<a id='L432' name='L432'></a> 432 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L433' name='L433'></a> 433 <em class='brace'>{</em>
<a id='L434' name='L434'></a> 434 <strong class='reserved'>int</strong> <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>;
<a id='L435' name='L435'></a> 435 <strong class='reserved'>void</strong> *<a href='../Y/value.html' title='Multiple used in 188 places.'>value</a>;
<a id='L436' name='L436'></a> 436
<a id='L437' name='L437'></a> 437 <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = <a href='../Y/va_arg.html' title='Multiple used in 10 places.'>va_arg</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>, <strong class='reserved'>int</strong>);
<a id='L438' name='L438'></a> 438 <a href='../Y/value.html' title='Multiple used in 188 places.'>value</a> = <a href='../Y/va_arg.html' title='Multiple used in 10 places.'>va_arg</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>, <strong class='reserved'>void</strong> *);
<a id='L439' name='L439'></a> 439 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, &amp;<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>));
<a id='L440' name='L440'></a> 440 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, <a href='../Y/value.html' title='Multiple used in 188 places.'>value</a>, <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>);
<a id='L441' name='L441'></a> 441 <em class='brace'>}</em>
<a id='L442' name='L442'></a> 442
<a id='L443' name='L443'></a> 443 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/from_parent_fd.html' title='Multiple used in 6 places.'>from_parent_fd</a>, &amp;<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>));
<a id='L444' name='L444'></a> 444 <strong class='reserved'>if</strong> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L445' name='L445'></a> 445 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/from_parent_fd.html' title='Multiple used in 6 places.'>from_parent_fd</a>, <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <strong class='reserved'>sizeof</strong> (*<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>));
<a id='L446' name='L446'></a> 446
<a id='L447' name='L447'></a> 447 (<strong class='reserved'>void</strong>) <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L448' name='L448'></a> 448
<a id='L449' name='L449'></a> 449 <strong class='reserved'>return</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
<a id='L450' name='L450'></a> 450 <em class='brace'>}</em>
<a id='L451' name='L451'></a> 451
<a id='L452' name='L452'></a> 452 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L453' name='L453'></a> 453
<a id='L454' name='L454'></a> 454 <strong class='reserved'>static</strong> <strong class='reserved'>char</strong> *
<a id='L455' name='L455'></a> 455 <a href='../R/parent_va_call_string.html' title='Multiple referred from 2 places.'>parent_va_call_string</a> (<strong class='reserved'>void</strong> *<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <strong class='reserved'>int</strong> <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../Y/va_list.html' title='Multiple used in 36 places.'>va_list</a> <a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>)
<em class='comment'>/* <a href='#L425'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L491'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+455 src/background.c' /> */</em>
<a id='L456' name='L456'></a> 456 <em class='brace'>{</em>
<a id='L457' name='L457'></a> 457 <strong class='reserved'>char</strong> *<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>;
<a id='L458' name='L458'></a> 458 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
<a id='L459' name='L459'></a> 459
<a id='L460' name='L460'></a> 460 <a href='../S/src--background.c.html#L405' title='Defined at 405 in src/background.c.'>parent_call_header</a> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../S/src--background.c.html#L66' title='Defined at 66 in src/background.c.'>Return_String</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
<a id='L461' name='L461'></a> 461 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L462' name='L462'></a> 462 <em class='brace'>{</em>
<a id='L463' name='L463'></a> 463 <strong class='reserved'>int</strong> <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>;
<a id='L464' name='L464'></a> 464 <strong class='reserved'>void</strong> *<a href='../Y/value.html' title='Multiple used in 188 places.'>value</a>;
<a id='L465' name='L465'></a> 465
<a id='L466' name='L466'></a> 466 <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = <a href='../Y/va_arg.html' title='Multiple used in 10 places.'>va_arg</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>, <strong class='reserved'>int</strong>);
<a id='L467' name='L467'></a> 467 <a href='../Y/value.html' title='Multiple used in 188 places.'>value</a> = <a href='../Y/va_arg.html' title='Multiple used in 10 places.'>va_arg</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>, <strong class='reserved'>void</strong> *);
<a id='L468' name='L468'></a> 468 <strong class='reserved'>if</strong> (<a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, &amp;<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>)) != <strong class='reserved'>sizeof</strong> (<a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>)
<a id='L469' name='L469'></a> 469 || <a href='../Y/write.html' title='Multiple used in 55 places.'>write</a> (<a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a>, <a href='../Y/value.html' title='Multiple used in 188 places.'>value</a>, <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>) != <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>)
<a id='L470' name='L470'></a> 470 <strong class='reserved'>return</strong> <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L471' name='L471'></a> 471 <em class='brace'>}</em>
<a id='L472' name='L472'></a> 472
<a id='L473' name='L473'></a> 473 <strong class='reserved'>if</strong> (<a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/from_parent_fd.html' title='Multiple used in 6 places.'>from_parent_fd</a>, &amp;<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>)) != <strong class='reserved'>sizeof</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>) || <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> == 0)
<a id='L474' name='L474'></a> 474 <strong class='reserved'>return</strong> <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L475' name='L475'></a> 475
<a id='L476' name='L476'></a> 476 <a href='../Y/str.html' title='Multiple used in 654 places.'>str</a> = <a href='../Y/g_malloc.html' title='Multiple used in 42 places.'>g_malloc</a> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> + 1);
<a id='L477' name='L477'></a> 477 <strong class='reserved'>if</strong> (<a href='../Y/read.html' title='Multiple used in 58 places.'>read</a> (<a href='../Y/from_parent_fd.html' title='Multiple used in 6 places.'>from_parent_fd</a>, <a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>, <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>) != <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>)
<a id='L478' name='L478'></a> 478 <em class='brace'>{</em>
<a id='L479' name='L479'></a> 479 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>);
<a id='L480' name='L480'></a> 480 <strong class='reserved'>return</strong> <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L481' name='L481'></a> 481 <em class='brace'>}</em>
<a id='L482' name='L482'></a> 482 <a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>] = '\0';
<a id='L483' name='L483'></a> 483 <strong class='reserved'>return</strong> <a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>;
<a id='L484' name='L484'></a> 484 <em class='brace'>}</em>
<a id='L485' name='L485'></a> 485
<a id='L486' name='L486'></a> 486 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L487' name='L487'></a> 487 <em class='comment'>/*** public functions ****************************************************************************/</em>
<a id='L488' name='L488'></a> 488 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L489' name='L489'></a> 489
<a id='L490' name='L490'></a> 490 <strong class='reserved'>void</strong>
<a id='L491' name='L491'></a> 491 <a href='../R/unregister_task_running.html' title='Multiple referred from 3 places.'>unregister_task_running</a> (<a href='../Y/pid_t.html' title='Multiple used in 24 places.'>pid_t</a> <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>, <strong class='reserved'>int</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>)
<em class='comment'>/* <a href='#L455'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L500'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+491 src/background.c' /> */</em>
<a id='L492' name='L492'></a> 492 <em class='brace'>{</em>
<a id='L493' name='L493'></a> 493 <a href='../S/src--background.c.html#L108' title='Defined at 108 in src/background.c.'>destroy_task</a> (<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>);
<a id='L494' name='L494'></a> 494 <a href='../S/lib--tty--key.c.html#L1388' title='Defined at 1388 in lib/tty/key.c.'>delete_select_channel</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>);
<a id='L495' name='L495'></a> 495 <em class='brace'>}</em>
<a id='L496' name='L496'></a> 496
<a id='L497' name='L497'></a> 497 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L498' name='L498'></a> 498
<a id='L499' name='L499'></a> 499 <strong class='reserved'>void</strong>
<a id='L500' name='L500'></a> 500 <a href='../R/unregister_task_with_pid.html' title='Multiple referred from 2 places.'>unregister_task_with_pid</a> (<a href='../Y/pid_t.html' title='Multiple used in 24 places.'>pid_t</a> <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>)
<em class='comment'>/* <a href='#L491'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L519'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+500 src/background.c' /> */</em>
<a id='L501' name='L501'></a> 501 <em class='brace'>{</em>
<a id='L502' name='L502'></a> 502 <strong class='reserved'>int</strong> <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>;
<a id='L503' name='L503'></a> 503
<a id='L504' name='L504'></a> 504 <a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a> = <a href='../S/src--background.c.html#L108' title='Defined at 108 in src/background.c.'>destroy_task</a> (<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>);
<a id='L505' name='L505'></a> 505 <strong class='reserved'>if</strong> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a> != -1)
<a id='L506' name='L506'></a> 506 <a href='../S/lib--tty--key.c.html#L1388' title='Defined at 1388 in lib/tty/key.c.'>delete_select_channel</a> (<a href='../Y/fd.html' title='Multiple used in 250 places.'>fd</a>);
<a id='L507' name='L507'></a> 507 <em class='brace'>}</em>
<a id='L508' name='L508'></a> 508
<a id='L509' name='L509'></a> 509 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L510' name='L510'></a> 510 <em class='comment'>/**</em>
<a id='L511' name='L511'></a> 511 <em class='comment'> * Try to make the Midnight Commander a background job</em>
<a id='L512' name='L512'></a> 512 <em class='comment'> *</em>
<a id='L513' name='L513'></a> 513 <em class='comment'> * Returns:</em>
<a id='L514' name='L514'></a> 514 <em class='comment'> * 1 for parent</em>
<a id='L515' name='L515'></a> 515 <em class='comment'> * 0 for child</em>
<a id='L516' name='L516'></a> 516 <em class='comment'> * -1 on failure</em>
<a id='L517' name='L517'></a> 517 <em class='comment'> */</em>
<a id='L518' name='L518'></a> 518 <strong class='reserved'>int</strong>
<a id='L519' name='L519'></a> 519 <a href='../R/do_background.html' title='Multiple referred from 2 places.'>do_background</a> (<a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <strong class='reserved'>char</strong> *<a href='../Y/info.html' title='Multiple used in 122 places.'>info</a>)
<em class='comment'>/* <a href='#L500'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L595'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+519 src/background.c' /> */</em>
<a id='L520' name='L520'></a> 520 <em class='brace'>{</em>
<a id='L521' name='L521'></a> 521 <strong class='reserved'>int</strong> <a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[2]; <em class='comment'>// control connection stream</em>
<a id='L522' name='L522'></a> 522 <strong class='reserved'>int</strong> <a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[2]; <em class='comment'>// back connection</em>
<a id='L523' name='L523'></a> 523 <a href='../Y/pid_t.html' title='Multiple used in 24 places.'>pid_t</a> <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>;
<a id='L524' name='L524'></a> 524
<a id='L525' name='L525'></a> 525 <strong class='reserved'>if</strong> (<a href='../Y/pipe.html' title='Multiple used in 6 places.'>pipe</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>) == -1)
<a id='L526' name='L526'></a> 526 <strong class='reserved'>return</strong> (-1);
<a id='L527' name='L527'></a> 527
<a id='L528' name='L528'></a> 528 <strong class='reserved'>if</strong> (<a href='../Y/pipe.html' title='Multiple used in 6 places.'>pipe</a> (<a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>) == -1)
<a id='L529' name='L529'></a> 529 <em class='brace'>{</em>
<a id='L530' name='L530'></a> 530 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[0]);
<a id='L531' name='L531'></a> 531 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[1]);
<a id='L532' name='L532'></a> 532
<a id='L533' name='L533'></a> 533 <strong class='reserved'>return</strong> (-1);
<a id='L534' name='L534'></a> 534 <em class='brace'>}</em>
<a id='L535' name='L535'></a> 535
<a id='L536' name='L536'></a> 536 <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a> = <a href='../D/my_fork.html' title='Multiple defined in 2 places.'>my_fork</a> ();
<a id='L537' name='L537'></a> 537 <strong class='reserved'>if</strong> (<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a> == -1)
<a id='L538' name='L538'></a> 538 <em class='brace'>{</em>
<a id='L539' name='L539'></a> 539 <strong class='reserved'>int</strong> <a href='../Y/saved_errno.html' title='Multiple used in 12 places.'>saved_errno</a> = <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a>;
<a id='L540' name='L540'></a> 540
<a id='L541' name='L541'></a> 541 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[0]);
<a id='L542' name='L542'></a> 542 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[1]);
<a id='L543' name='L543'></a> 543 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[0]);
<a id='L544' name='L544'></a> 544 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[1]);
<a id='L545' name='L545'></a> 545 <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a> = <a href='../Y/saved_errno.html' title='Multiple used in 12 places.'>saved_errno</a>;
<a id='L546' name='L546'></a> 546
<a id='L547' name='L547'></a> 547 <strong class='reserved'>return</strong> (-1);
<a id='L548' name='L548'></a> 548 <em class='brace'>}</em>
<a id='L549' name='L549'></a> 549
<a id='L550' name='L550'></a> 550 <strong class='reserved'>if</strong> (<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a> == 0)
<a id='L551' name='L551'></a> 551 <em class='brace'>{</em>
<a id='L552' name='L552'></a> 552 <strong class='reserved'>int</strong> <a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a>;
<a id='L553' name='L553'></a> 553
<a id='L554' name='L554'></a> 554 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[0]);
<a id='L555' name='L555'></a> 555 <a href='../Y/parent_fd.html' title='Multiple used in 11 places.'>parent_fd</a> = <a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[1];
<a id='L556' name='L556'></a> 556
<a id='L557' name='L557'></a> 557 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[1]);
<a id='L558' name='L558'></a> 558 <a href='../Y/from_parent_fd.html' title='Multiple used in 6 places.'>from_parent_fd</a> = <a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[0];
<a id='L559' name='L559'></a> 559
<a id='L560' name='L560'></a> 560 <a href='../Y/mc_global.html' title='Multiple used in 662 places.'>mc_global</a>.<a href='../Y/we_are_background.html' title='Multiple used in 13 places.'>we_are_background</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L561' name='L561'></a> 561 <a href='../Y/top_dlg.html' title='Multiple used in 20 places.'>top_dlg</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L562' name='L562'></a> 562
<a id='L563' name='L563'></a> 563 <em class='comment'>// Make stdin/stdout/stderr point somewhere</em>
<a id='L564' name='L564'></a> 564 <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../S/lib--unixcompat.h.html#L59' title='Defined at 59 in lib/unixcompat.h.'>STDIN_FILENO</a>);
<a id='L565' name='L565'></a> 565 <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../S/lib--unixcompat.h.html#L63' title='Defined at 63 in lib/unixcompat.h.'>STDOUT_FILENO</a>);
<a id='L566' name='L566'></a> 566 <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../S/lib--unixcompat.h.html#L67' title='Defined at 67 in lib/unixcompat.h.'>STDERR_FILENO</a>);
<a id='L567' name='L567'></a> 567
<a id='L568' name='L568'></a> 568 <a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a> = <a href='../Y/open.html' title='Multiple used in 38 places.'>open</a> ("/dev/null", <a href='../Y/O_RDWR.html' title='Multiple used in 13 places.'>O_RDWR</a>);
<a id='L569' name='L569'></a> 569 <strong class='reserved'>if</strong> (<a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a> != -1)
<a id='L570' name='L570'></a> 570 <em class='brace'>{</em>
<a id='L571' name='L571'></a> 571 <strong class='reserved'>while</strong> (<a href='../Y/dup2.html' title='Multiple used in 11 places.'>dup2</a> (<a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a>, <a href='../S/lib--unixcompat.h.html#L59' title='Defined at 59 in lib/unixcompat.h.'>STDIN_FILENO</a>) == -1 &amp;&amp; <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a> == <a href='../Y/EINTR.html' title='Multiple used in 41 places.'>EINTR</a>)
<a id='L572' name='L572'></a> 572 ;
<a id='L573' name='L573'></a> 573 <strong class='reserved'>while</strong> (<a href='../Y/dup2.html' title='Multiple used in 11 places.'>dup2</a> (<a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a>, <a href='../S/lib--unixcompat.h.html#L63' title='Defined at 63 in lib/unixcompat.h.'>STDOUT_FILENO</a>) == -1 &amp;&amp; <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a> == <a href='../Y/EINTR.html' title='Multiple used in 41 places.'>EINTR</a>)
<a id='L574' name='L574'></a> 574 ;
<a id='L575' name='L575'></a> 575 <strong class='reserved'>while</strong> (<a href='../Y/dup2.html' title='Multiple used in 11 places.'>dup2</a> (<a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a>, <a href='../S/lib--unixcompat.h.html#L67' title='Defined at 67 in lib/unixcompat.h.'>STDERR_FILENO</a>) == -1 &amp;&amp; <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a> == <a href='../Y/EINTR.html' title='Multiple used in 41 places.'>EINTR</a>)
<a id='L576' name='L576'></a> 576 ;
<a id='L577' name='L577'></a> 577 <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/nullfd.html' title='Multiple used in 7 places.'>nullfd</a>);
<a id='L578' name='L578'></a> 578 <em class='brace'>}</em>
<a id='L579' name='L579'></a> 579
<a id='L580' name='L580'></a> 580 <strong class='reserved'>return</strong> 0;
<a id='L581' name='L581'></a> 581 <em class='brace'>}</em>
<a id='L582' name='L582'></a> 582 <strong class='reserved'>else</strong>
<a id='L583' name='L583'></a> 583 <em class='brace'>{</em>
<a id='L584' name='L584'></a> 584 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[1]);
<a id='L585' name='L585'></a> 585 (<strong class='reserved'>void</strong>) <a href='../Y/close.html' title='Multiple used in 122 places.'>close</a> (<a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[0]);
<a id='L586' name='L586'></a> 586 <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>-&gt;<a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a> = <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>;
<a id='L587' name='L587'></a> 587 <a href='../S/src--background.c.html#L89' title='Defined at 89 in src/background.c.'>register_task_running</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../Y/pid.html' title='Multiple used in 52 places.'>pid</a>, <a href='../Y/comm.html' title='Multiple used in 10 places.'>comm</a>[0], <a href='../Y/back_comm.html' title='Multiple used in 8 places.'>back_comm</a>[1], <a href='../Y/info.html' title='Multiple used in 122 places.'>info</a>);
<a id='L588' name='L588'></a> 588 <strong class='reserved'>return</strong> 1;
<a id='L589' name='L589'></a> 589 <em class='brace'>}</em>
<a id='L590' name='L590'></a> 590 <em class='brace'>}</em>
<a id='L591' name='L591'></a> 591
<a id='L592' name='L592'></a> 592 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L593' name='L593'></a> 593
<a id='L594' name='L594'></a> 594 <strong class='reserved'>int</strong>
<a id='L595' name='L595'></a> 595 <a href='../R/parent_call.html' title='Multiple referred from 6 places.'>parent_call</a> (<strong class='reserved'>void</strong> *<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <strong class='reserved'>int</strong> <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, ...)
<em class='comment'>/* <a href='#L519'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L610'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+595 src/background.c' /> */</em>
<a id='L596' name='L596'></a> 596 <em class='brace'>{</em>
<a id='L597' name='L597'></a> 597 <strong class='reserved'>int</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L598' name='L598'></a> 598 <a href='../Y/va_list.html' title='Multiple used in 36 places.'>va_list</a> <a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>;
<a id='L599' name='L599'></a> 599
<a id='L600' name='L600'></a> 600 <a href='../Y/va_start.html' title='Multiple used in 31 places.'>va_start</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>, <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>);
<a id='L601' name='L601'></a> 601 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../S/src--background.c.html#L425' title='Defined at 425 in src/background.c.'>parent_va_call</a> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, (<a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a>) <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>);
<a id='L602' name='L602'></a> 602 <a href='../Y/va_end.html' title='Multiple used in 31 places.'>va_end</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>);
<a id='L603' name='L603'></a> 603
<a id='L604' name='L604'></a> 604 <strong class='reserved'>return</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L605' name='L605'></a> 605 <em class='brace'>}</em>
<a id='L606' name='L606'></a> 606
<a id='L607' name='L607'></a> 607 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L608' name='L608'></a> 608
<a id='L609' name='L609'></a> 609 <strong class='reserved'>char</strong> *
<a id='L610' name='L610'></a> 610 <a href='../S/src--background.h.html#L41' title='Referred from 41 in src/background.h.'>parent_call_string</a> (<strong class='reserved'>void</strong> *<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <strong class='reserved'>int</strong> <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, ...)
<em class='comment'>/* <a href='#L595'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L626'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+610 src/background.c' /> */</em>
<a id='L611' name='L611'></a> 611 <em class='brace'>{</em>
<a id='L612' name='L612'></a> 612 <a href='../Y/va_list.html' title='Multiple used in 36 places.'>va_list</a> <a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>;
<a id='L613' name='L613'></a> 613 <strong class='reserved'>char</strong> *<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>;
<a id='L614' name='L614'></a> 614
<a id='L615' name='L615'></a> 615 <a href='../Y/va_start.html' title='Multiple used in 31 places.'>va_start</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>, <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>);
<a id='L616' name='L616'></a> 616 <a href='../Y/str.html' title='Multiple used in 654 places.'>str</a> = <a href='../S/src--background.c.html#L455' title='Defined at 455 in src/background.c.'>parent_va_call_string</a> (<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>);
<a id='L617' name='L617'></a> 617 <a href='../Y/va_end.html' title='Multiple used in 31 places.'>va_end</a> (<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>);
<a id='L618' name='L618'></a> 618
<a id='L619' name='L619'></a> 619 <strong class='reserved'>return</strong> <a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>;
<a id='L620' name='L620'></a> 620 <em class='brace'>}</em>
<a id='L621' name='L621'></a> 621
<a id='L622' name='L622'></a> 622 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L623' name='L623'></a> 623
<a id='L624' name='L624'></a> 624 <em class='comment'>/* event callback */</em>
<a id='L625' name='L625'></a> 625 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
<a id='L626' name='L626'></a> 626 <a href='../R/background_parent_call.html' title='Multiple referred from 2 places.'>background_parent_call</a> (<strong class='reserved'>const</strong> <a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a> *<a href='../Y/event_group_name.html' title='Multiple used in 74 places.'>event_group_name</a>, <strong class='reserved'>const</strong> <a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a> *<a href='../Y/event_name.html' title='Multiple used in 69 places.'>event_name</a>, <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/init_data.html' title='Multiple used in 48 places.'>init_data</a>,
<em class='comment'>/* <a href='#L610'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L645'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+626 src/background.c' /> */</em>
<a id='L627' name='L627'></a> 627 <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)
<a id='L628' name='L628'></a> 628 <em class='brace'>{</em>
<a id='L629' name='L629'></a> 629 <a href='../S/lib--event-types.h.html#L66' title='Defined at 66 in lib/event-types.h.'>ev_background_parent_call_t</a> *<a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a> = (<a href='../S/lib--event-types.h.html#L66' title='Defined at 66 in lib/event-types.h.'>ev_background_parent_call_t</a> *) <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>;
<a id='L630' name='L630'></a> 630
<a id='L631' name='L631'></a> 631 (<strong class='reserved'>void</strong>) <a href='../Y/event_group_name.html' title='Multiple used in 74 places.'>event_group_name</a>;
<a id='L632' name='L632'></a> 632 (<strong class='reserved'>void</strong>) <a href='../Y/event_name.html' title='Multiple used in 69 places.'>event_name</a>;
<a id='L633' name='L633'></a> 633 (<strong class='reserved'>void</strong>) <a href='../Y/init_data.html' title='Multiple used in 48 places.'>init_data</a>;
<a id='L634' name='L634'></a> 634
<a id='L635' name='L635'></a> 635 <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>.<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> =
<a id='L636' name='L636'></a> 636 <a href='../S/src--background.c.html#L425' title='Defined at 425 in src/background.c.'>parent_va_call</a> (<a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>);
<a id='L637' name='L637'></a> 637
<a id='L638' name='L638'></a> 638 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L639' name='L639'></a> 639 <em class='brace'>}</em>
<a id='L640' name='L640'></a> 640
<a id='L641' name='L641'></a> 641 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L642' name='L642'></a> 642
<a id='L643' name='L643'></a> 643 <em class='comment'>/* event callback */</em>
<a id='L644' name='L644'></a> 644 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
<a id='L645' name='L645'></a> 645 <a href='../R/background_parent_call_string.html' title='Multiple referred from 2 places.'>background_parent_call_string</a> (<strong class='reserved'>const</strong> <a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a> *<a href='../Y/event_group_name.html' title='Multiple used in 74 places.'>event_group_name</a>, <strong class='reserved'>const</strong> <a href='../Y/gchar.html' title='Multiple used in 321 places.'>gchar</a> *<a href='../Y/event_name.html' title='Multiple used in 69 places.'>event_name</a>,
<em class='comment'>/* <a href='#L626'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><img class='icon' src='../icons/n_last.png' alt='[last]' /><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+645 src/background.c' /> */</em>
<a id='L646' name='L646'></a> 646 <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/init_data.html' title='Multiple used in 48 places.'>init_data</a>, <a href='../Y/gpointer.html' title='Multiple used in 108 places.'>gpointer</a> <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)
<a id='L647' name='L647'></a> 647 <em class='brace'>{</em>
<a id='L648' name='L648'></a> 648 <a href='../S/lib--event-types.h.html#L66' title='Defined at 66 in lib/event-types.h.'>ev_background_parent_call_t</a> *<a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a> = (<a href='../S/lib--event-types.h.html#L66' title='Defined at 66 in lib/event-types.h.'>ev_background_parent_call_t</a> *) <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>;
<a id='L649' name='L649'></a> 649
<a id='L650' name='L650'></a> 650 (<strong class='reserved'>void</strong>) <a href='../Y/event_group_name.html' title='Multiple used in 74 places.'>event_group_name</a>;
<a id='L651' name='L651'></a> 651 (<strong class='reserved'>void</strong>) <a href='../Y/event_name.html' title='Multiple used in 69 places.'>event_name</a>;
<a id='L652' name='L652'></a> 652 (<strong class='reserved'>void</strong>) <a href='../Y/init_data.html' title='Multiple used in 48 places.'>init_data</a>;
<a id='L653' name='L653'></a> 653
<a id='L654' name='L654'></a> 654 <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>.<a href='../Y/s.html' title='Multiple used in 822 places.'>s</a> =
<a id='L655' name='L655'></a> 655 <a href='../S/src--background.c.html#L455' title='Defined at 455 in src/background.c.'>parent_va_call_string</a> (<a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/routine.html' title='Multiple used in 37 places.'>routine</a>, <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/argc.html' title='Multiple used in 69 places.'>argc</a>, <a href='../Y/event_data.html' title='Multiple used in 91 places.'>event_data</a>-&gt;<a href='../Y/ap.html' title='Multiple used in 71 places.'>ap</a>);
<a id='L656' name='L656'></a> 656
<a id='L657' name='L657'></a> 657 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L658' name='L658'></a> 658 <em class='brace'>}</em>
<a id='L659' name='L659'></a> 659
<a id='L660' name='L660'></a> 660 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
</pre>
<hr />
<a id='BOTTOM' name='BOTTOM'></a>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L89'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L645'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><img class='icon' src='../icons/n_bottom.png' alt='[bottom]' /><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+660 src/background.c' /> */</em>
</body>
</html>