Home
last modified time | relevance | path

Searched refs:child (Results 1 - 25 of 2036) sorted by relevance

12345678910>>...82

/third_party/libuv/src/
H A Dheap-inl.h72 /* Swap parent with child. Child moves closer to the root, parent moves away. */
75 struct heap_node* child) { in heap_node_swap()
80 *parent = *child; in heap_node_swap()
81 *child = t; in heap_node_swap()
83 parent->parent = child; in heap_node_swap()
84 if (child->left == child) { in heap_node_swap()
85 child->left = parent; in heap_node_swap()
86 sibling = child->right; in heap_node_swap()
88 child in heap_node_swap()
73 heap_node_swap(struct heap* heap, struct heap_node* parent, struct heap_node* child) heap_node_swap() argument
111 struct heap_node** child; HEAP_EXPORT() local
156 struct heap_node* child; HEAP_EXPORT() local
[all...]
/third_party/node/deps/uv/src/
H A Dheap-inl.h71 /* Swap parent with child. Child moves closer to the root, parent moves away. */
74 struct heap_node* child) { in heap_node_swap()
79 *parent = *child; in heap_node_swap()
80 *child = t; in heap_node_swap()
82 parent->parent = child; in heap_node_swap()
83 if (child->left == child) { in heap_node_swap()
84 child->left = parent; in heap_node_swap()
85 sibling = child->right; in heap_node_swap()
87 child in heap_node_swap()
72 heap_node_swap(struct heap* heap, struct heap_node* parent, struct heap_node* child) heap_node_swap() argument
110 struct heap_node** child; HEAP_EXPORT() local
155 struct heap_node* child; HEAP_EXPORT() local
[all...]
/foundation/arkui/ui_lite/frameworks/layout/
H A Dflex_layout.cpp52 /* if total length of children is too long or only one child, layout them centerly no matter what key word set. in GetStartPos()
100 UIView* child = childrenHead_; in CalValidLength() local
107 while (child != nullptr) { in CalValidLength()
108 if (child->IsVisible()) { in CalValidLength()
109 child->ReMeasure(); in CalValidLength()
111 left = child->GetStyle(STYLE_MARGIN_LEFT); in CalValidLength()
112 right = child->GetStyle(STYLE_MARGIN_RIGHT); in CalValidLength()
113 totalValidLength += (child->GetRelativeRect().GetWidth() + left + right); in CalValidLength()
115 top = child->GetStyle(STYLE_MARGIN_TOP); in CalValidLength()
116 bottom = child in CalValidLength()
127 UIView* child = childrenHead_; CalRowCount() local
151 UIView* child = childrenHead_; GetRowMaxHeight() local
187 UIView* child = childrenHead_; GetRowsWidth() local
222 GetCrossAxisPosY(int16_t& posY, uint16_t& count, uint16_t* rowsMaxHeight, UIView* child) GetCrossAxisPosY() argument
257 UIView* child = childrenHead_; LayoutHorizontal() local
317 UIView* child = childrenHead_; CalColumnCount() local
341 UIView* child = childrenHead_; GetColumnMaxWidth() local
375 UIView* child = childrenHead_; GetColumnsHeight() local
410 GetCrossAxisPosX(int16_t& posX, uint16_t& count, uint16_t* columnsMaxWidth, UIView* child) GetCrossAxisPosX() argument
445 UIView* child = childrenHead_; LayoutVertical() local
[all...]
H A Dgrid_layout.cpp24 UIView* child = childrenHead_; in LayoutChildren() local
30 while (child != nullptr) { in LayoutChildren()
32 child = child->GetNextSibling(); in LayoutChildren()
51 UIView* child = childrenHead_; in LayoutHorizontal() local
62 if (child == nullptr) { in LayoutHorizontal()
66 child->ReMeasure(); in LayoutHorizontal()
67 left = child->GetStyle(STYLE_MARGIN_LEFT); in LayoutHorizontal()
68 right = child->GetStyle(STYLE_MARGIN_RIGHT); in LayoutHorizontal()
69 top = child in LayoutHorizontal()
85 UIView* child = childrenHead_; LayoutVertical() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Dcomponent_group.h38 virtual void OnChildInserted(const RefPtr<Component>& child, int32_t position) {} in OnChildInserted() argument
39 virtual void OnChildAppended(const RefPtr<Component>& child) {} in OnChildAppended() argument
48 for (const auto& child : children_) { in InitChildren()
49 child->SetParent(WeakClaim(this)); in InitChildren()
65 for (const auto& child : children_) { in ClearChildren()
66 child->SetParent(nullptr); in ClearChildren()
71 virtual void InsertChild(int32_t position, const RefPtr<Component>& child) in InsertChild() argument
73 if (!child) { in InsertChild()
76 child->SetParent(WeakClaim(this)); in InsertChild()
79 children_.insert(insertIter, child); in InsertChild()
83 AppendChild(const RefPtr<Component>& child) AppendChild() argument
93 AppendChildDirectly(const RefPtr<Component>& child) AppendChildDirectly() argument
102 RemoveChildDirectly(const RefPtr<Component>& child) RemoveChildDirectly() argument
118 auto child = compose->GetChild(); RemoveChildByComposedId() local
128 RemoveChild(const RefPtr<Component>& child) RemoveChild() argument
[all...]
H A Delement.cpp27 for (const auto& child : children_) { in ~Element()
28 DetachChild(child); in ~Element()
32 void Element::AddChild(const RefPtr<Element>& child, int32_t slot) in AddChild() argument
34 if (!child) { in AddChild()
38 auto it = std::find(children_.begin(), children_.end(), child); in AddChild()
46 children_.insert(it, child); in AddChild()
48 child->SetSlot(slot); in AddChild()
49 Apply(child); in AddChild()
52 void Element::RemoveChild(const RefPtr<Element>& child) in RemoveChild() argument
54 if (child) { in RemoveChild()
70 ChangeChildSlot(const RefPtr<Element>& child, int32_t slot) ChangeChildSlot() argument
101 ChangeChildRenderSlot(const RefPtr<Element>& child, int32_t renderSlot, bool effectDescendant) ChangeChildRenderSlot() argument
121 DeactivateChild(RefPtr<Element> child) DeactivateChild() argument
139 DetachChild(const RefPtr<Element>& child) DetachChild() argument
188 DoUpdateChildWithNewComponent( const RefPtr<Element>& child, const RefPtr<Component>& newComponent, int32_t slot, int32_t renderSlot) DoUpdateChildWithNewComponent() argument
199 UpdateChildWithSlot( const RefPtr<Element>& child, const RefPtr<Component>& newComponent, int32_t slot, int32_t renderSlot) UpdateChildWithSlot() argument
[all...]
H A Dflutter_render_context.cpp51 void FlutterRenderContext::PaintChild(const RefPtr<RenderNode>& child, const Offset& offset) in PaintChild() argument
53 if (!ShouldPaint(child)) { in PaintChild()
58 auto pipeline = child->GetContext().Upgrade(); in PaintChild()
63 Rect rect = child->GetTransitionPaintRect() + offset; in PaintChild()
64 if (!(child->IsPaintOutOfParent() || canChildOverflow) && !estimatedRect_.IsIntersectWith(rect)) { in PaintChild()
66 child->ClearAccessibilityRect(); in PaintChild()
71 if (child->GetRenderLayer()) { in PaintChild()
73 std::string name = AceType::TypeName(child); in PaintChild()
75 if (child->NeedRender()) { in PaintChild()
77 auto pipelineContext = child in PaintChild()
108 SetOffSet( const RefPtr<RenderNode>& child, OffsetLayer* layer, const Offset& pos, const std::string& name) SetOffSet() argument
180 IsIntersectWith(const RefPtr<RenderNode>& child, Offset& offset) IsIntersectWith() argument
[all...]
/third_party/rust/crates/nix/test/sys/
H A Dtest_wait.rs13 // Safe: The child only calls `pause` and/or `_exit`, which are async-signal-safe. in test_wait_signal()
19 Parent { child } => { in test_wait_signal()
20 kill(child, Some(SIGKILL)).expect("Error: Kill Failed"); in test_wait_signal()
22 waitpid(child, None), in test_wait_signal()
23 Ok(WaitStatus::Signaled(child, SIGKILL, false)) in test_wait_signal()
40 // Safe: The child only calls `pause` and/or `_exit`, which are async-signal-safe. in test_waitid_signal()
46 Parent { child } => { in test_waitid_signal()
47 kill(child, Some(SIGKILL)).expect("Error: Kill Failed"); in test_waitid_signal()
49 waitid(Id::Pid(child), WaitPidFlag::WEXITED), in test_waitid_signal()
50 Ok(WaitStatus::Signaled(child, SIGKIL in test_waitid_signal()
[all...]
H A Dtest_ptrace.rs95 // As recommended by ptrace(2), raise SIGTRAP to pause the child in test_ptrace_cont()
101 Parent { child } => { in test_ptrace_cont()
103 waitpid(child, None), in test_ptrace_cont()
104 Ok(WaitStatus::Stopped(child, Signal::SIGTRAP)) in test_ptrace_cont()
106 ptrace::cont(child, None).unwrap(); in test_ptrace_cont()
108 waitpid(child, None), in test_ptrace_cont()
109 Ok(WaitStatus::Stopped(child, Signal::SIGTRAP)) in test_ptrace_cont()
111 ptrace::cont(child, Some(Signal::SIGKILL)).unwrap(); in test_ptrace_cont()
112 match waitpid(child, None) { in test_ptrace_cont()
114 if pid == child in test_ptrace_cont()
[all...]
/third_party/ffmpeg/libavutil/
H A Dtree.c27 struct AVTreeNode *child[2]; member
47 return av_tree_find(t->child[(v >> 31) ^ 1], key, cmp, next); in av_tree_find()
50 av_tree_find(t->child[0], key, cmp, next); in av_tree_find()
51 av_tree_find(t->child[1], key, cmp, next); in av_tree_find()
69 else if (t->child[0] || t->child[1]) { in av_tree_insert()
70 int i = !t->child[0]; in av_tree_insert()
72 av_tree_find(t->child[i], key, cmp, next_elem); in av_tree_insert()
81 ret = av_tree_insert(&t->child[v >> 31], key, cmp, next); in av_tree_insert()
84 AVTreeNode **child in av_tree_insert() local
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
H A Ddep-valid.js3 // Only relies on child.resolved, which MAY come from
12 const depValid = (child, requested, requestor) => {
23 requested = npa.resolve(child.name, requested || '*', fromPath(requestor, requestor.edgesOut.get(child.name)))
25 // Not invalid because the child doesn't match, but because
28 er.dependency = child.name
39 er.dependency = child.name
53 return semver.satisfies(child.version, requested.fetchSpec, true)
56 return linkValid(child, requested, requestor)
59 return tarballValid(child, requeste
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dui_node.cpp89 for (auto& child : children_) { in AttachContext()
90 child->AttachContext(context, recursive); in AttachContext()
109 for (auto& child : children_) { in DetachContext()
110 child->DetachContext(recursive); in DetachContext()
115 void UINode::AddChild(const RefPtr<UINode>& child, int32_t slot, in AddChild() argument
118 CHECK_NULL_VOID(child); in AddChild()
119 auto it = std::find(children_.begin(), children_.end(), child); in AddChild()
125 RemoveDisappearingChild(child); in AddChild()
131 LOGW("Current Node(id: %{public}d) is prohibited add child(tag %{public}s, id: %{public}d), " in AddChild()
133 GetId(), child in AddChild()
173 AddChildAfter(const RefPtr<UINode>& child, const RefPtr<UINode>& siblingNode) AddChildAfter() argument
196 AddChildBefore(const RefPtr<UINode>& child, const RefPtr<UINode>& siblingNode) AddChildBefore() argument
237 RemoveChild(const RefPtr<UINode>& child, bool allowTransition) RemoveChild() argument
267 RemoveChildAndReturnIndex(const RefPtr<UINode>& child) RemoveChildAndReturnIndex() argument
418 LoopDetected(const RefPtr<UINode>& child, const RefPtr<UINode>& current) LoopDetected() argument
454 DetectLoop(const RefPtr<UINode>& child, const RefPtr<UINode>& current) DetectLoop() argument
468 DoAddChild( std::list<RefPtr<UINode>>::iterator& it, const RefPtr<UINode>& child, bool silently, bool addDefaultTransition) DoAddChild() argument
521 RemoveFromParentCleanly(const RefPtr<UINode>& child, const RefPtr<UINode>& parent) RemoveFromParentCleanly() argument
972 auto child = JsonUtil::Create(); DumpSimplifyTree() local
979 auto child = JsonUtil::Create(); DumpSimplifyTree() local
1145 auto& child = *iter; TouchTest() local
1164 auto& child = *iter; MouseTest() local
1182 auto& child = *iter; AxisTest() local
1239 auto child = GetChildren().front(); CreateLayoutWrapper() local
1406 AddDisappearingChild(const RefPtr<UINode>& child, uint32_t index, int32_t branchId) AddDisappearingChild() argument
1422 RemoveDisappearingChild(const RefPtr<UINode>& child) RemoveDisappearingChild() argument
[all...]
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_hierarchy_test/
H A Dcpuset_hierarchy_test.sh46 echo > "$CPUSET/father/child/cpuset.cpus" || return 1
49 cpuset_log "child cpuset.cpus $(cat "$CPUSET/father/child/cpuset.cpus")"
52 test -z "$(cat "$CPUSET/father/child/cpuset.cpus")" || return 1
58 echo 0 > "$CPUSET/father/child/cpuset.cpus" 2> /dev/null && return 1
61 cpuset_log "child cpuset.cpus $(cat "$CPUSET/father/child/cpuset.cpus")"
64 test -z "$(cat "$CPUSET/father/child/cpuset.cpus")" || return 1
70 echo > "$CPUSET/father/child/cpuset.cpus" || return 1
73 cpuset_log "child cpuse
[all...]
/third_party/node/lib/internal/
H A Dsocket_list.js9 constructor(child, key) {
12 this.child = child;
13 child.once('exit', () => this.emit('exit', this));
19 if (!this.child.connected) return onclose();
20 this.child._send(msg, undefined, swallowErrors);
23 self.child.removeListener('internalMessage', onreply);
29 self.child.removeListener('disconnect', onclose);
30 self.child.removeListener('internalMessage', onreply);
35 this.child
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/
H A Dflex_layout_algorithm.cpp108 FlexDirection direction, const RefPtr<LayoutWrapper>& child, LayoutConstraintF& layoutConstraint) in UpdateChildLayoutConstrainByFlexBasis()
110 const auto& flexItemProperty = child->GetLayoutProperty()->GetFlexItemProperty(); in UpdateChildLayoutConstrainByFlexBasis()
117 if (child->GetLayoutProperty()->GetCalcLayoutConstraint()) { in UpdateChildLayoutConstrainByFlexBasis()
118 auto selfIdealSize = child->GetLayoutProperty()->GetCalcLayoutConstraint()->selfIdealSize; in UpdateChildLayoutConstrainByFlexBasis()
119 if (child->GetHostTag() == V2::BLANK_ETS_TAG && selfIdealSize.has_value()) { in UpdateChildLayoutConstrainByFlexBasis()
136 float GetMainAxisMargin(const RefPtr<LayoutWrapper>& child, FlexDirection direction) in GetMainAxisMargin() argument
139 if (child && child->GetGeometryNode() && child->GetGeometryNode()->GetMargin()) { in GetMainAxisMargin()
140 childMainAxisMargin = GetMainAxisSizeHelper(child in GetMainAxisMargin()
107 UpdateChildLayoutConstrainByFlexBasis( FlexDirection direction, const RefPtr<LayoutWrapper>& child, LayoutConstraintF& layoutConstraint) UpdateChildLayoutConstrainByFlexBasis() argument
525 HandleBlankFirstTimeMeasure( const MagicLayoutNode& child, FlexItemProperties& flexItemProperties) HandleBlankFirstTimeMeasure() argument
632 auto& child = *iter; SecondaryMeasureByProperty() local
690 auto child = *iter; SecondaryMeasureByProperty() local
707 auto child = *iter; SecondaryMeasureByProperty() local
760 auto child = childLayoutWrapper->GetHostNode(); CheckBlankAndKeepMin() local
777 auto child = childLayoutWrapper->GetHostNode(); IsKeepMinSize() local
[all...]
/third_party/googletest/googletest/test/
H A Dgtest_xml_test_utils.py57 * It has an equivalent set of child nodes (including elements and
96 'number of child elements differ in element ' + actual_node.tagName)
97 for child_id, child in expected_children.items():
101 self.AssertEquivalentNodes(child, actual_children[child_id])
114 Fetches all of the child nodes of element, a DOM Element object.
123 four is encountered, if two child elements with the same identifying
128 for child in element.childNodes:
129 if child.nodeType == Node.ELEMENT_NODE:
130 if child.tagName == 'properties':
131 self.assert_(child
[all...]
/third_party/node/test/parallel/
H A Dtest-runner-cli.js14 const child = spawnSync(process.execPath, args);
16 assert.strictEqual(child.status, 1);
17 assert.strictEqual(child.signal, null);
18 assert.strictEqual(child.stdout.toString(), '');
19 assert.match(child.stderr.toString(), /^Could not find/);
26 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') });
28 assert.strictEqual(child.status, 1);
29 assert.strictEqual(child.signal, null);
30 assert.strictEqual(child.stderr.toString(), '');
31 const stdout = child
[all...]
/third_party/mesa3d/src/util/
H A Ddag.c28 append_edge(struct dag_node *parent, struct dag_node *child, uintptr_t data) in append_edge() argument
30 /* Remove the child as a DAG head. */ in append_edge()
31 list_delinit(&child->link); in append_edge()
34 .child = child, in append_edge()
39 child->parent_count++; in append_edge()
43 * Adds a directed edge from the parent node to the child.
46 * list may contain multiple edges to the same child with different data.
49 dag_add_edge(struct dag_node *parent, struct dag_node *child, uintptr_t data) in dag_add_edge() argument
52 if (edge->child in dag_add_edge()
68 dag_add_edge_max_data(struct dag_node *parent, struct dag_node *child, uintptr_t data) dag_add_edge_max_data() argument
93 struct dag_node *child = edge->child; dag_remove_edge() local
[all...]
/third_party/node/test/sequential/
H A Dtest-repl-timeout-throw.js7 const child = spawn(process.execPath, [ '-i' ], {
12 child.stdout.setEncoding('utf8');
13 child.stdout.on('data', function(c) {
17 child.stdin.end();
20 child.stdin.write = function(original) {
23 return original.call(child.stdin, c);
25 }(child.stdin.write);
27 child.stdout.once('data', function() {
28 child.stdin.write('let throws = 0;');
29 child
[all...]
/third_party/elfutils/libdw/
H A Dlibdw_visit_scopes.c76 struct Dwarf_Die_Chain child; member
103 state.child.parent = root; in __libdw_visit_scopes()
105 if ((ret = INTUSE(dwarf_child) (&root->die, &state.child.die)) != 0) in __libdw_visit_scopes()
120 children in place before moving to the next real child. */ in walk_children()
121 while (INTUSE(dwarf_tag) (&state->child.die) == DW_TAG_imported_unit) in walk_children()
123 Dwarf_Die orig_child_die = state->child.die; in walk_children()
125 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&state->child.die, in walk_children()
130 if (INTUSE(dwarf_formref_die) (attr, &state->child.die) != NULL in walk_children()
131 && INTUSE(dwarf_tag) (&state->child.die) != DW_TAG_compile_unit in walk_children()
132 && (INTUSE(dwarf_child) (&state->child in walk_children()
[all...]
/third_party/skia/modules/sksg/include/
H A DSkSGGeometryEffect.h39 SkPath fPath; // transformed child cache.
45 * Apply a trim effect to the child geometry.
49 static sk_sp<TrimEffect> Make(sk_sp<GeometryNode> child) { in Make() argument
50 return child ? sk_sp<TrimEffect>(new TrimEffect(std::move(child))) : nullptr; in Make()
58 explicit TrimEffect(sk_sp<GeometryNode> child) : INHERITED(std::move(child)) {} in TrimEffect() argument
74 static sk_sp<GeometryTransform> Make(sk_sp<GeometryNode> child, sk_sp<Transform> transform) { in Make() argument
75 return child && transform in Make()
76 ? sk_sp<GeometryTransform>(new GeometryTransform(std::move(child), in Make()
104 Make(sk_sp<GeometryNode> child) Make() argument
112 DashEffect(sk_sp<GeometryNode> child) DashEffect() argument
127 Make(sk_sp<GeometryNode> child) Make() argument
134 RoundEffect(sk_sp<GeometryNode> child) RoundEffect() argument
148 Make(sk_sp<GeometryNode> child) Make() argument
157 OffsetEffect(sk_sp<GeometryNode> child) OffsetEffect() argument
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/pwm/
H A Dsysfs.c18 struct device child; member
24 static struct pwm_export *child_to_pwm_export(struct device *child) in child_to_pwm_export() argument
26 return container_of(child, struct pwm_export, child); in child_to_pwm_export()
29 static struct pwm_device *child_to_pwm_device(struct device *child) in child_to_pwm_device() argument
31 struct pwm_export *export = child_to_pwm_export(child); in child_to_pwm_device()
36 static ssize_t period_show(struct device *child, struct device_attribute *attr, char *buf) in period_show() argument
38 const struct pwm_device *pwm = child_to_pwm_device(child); in period_show()
46 static ssize_t period_store(struct device *child, struct device_attribute *attr, const char *buf, size_t size) in period_store() argument
48 struct pwm_export *export = child_to_pwm_export(child); in period_store()
68 duty_cycle_show(struct device *child, struct device_attribute *attr, char *buf) duty_cycle_show() argument
78 duty_cycle_store(struct device *child, struct device_attribute *attr, const char *buf, size_t size) duty_cycle_store() argument
101 oneshot_count_show(struct device *child, struct device_attribute *attr, char *buf) oneshot_count_show() argument
111 oneshot_count_store(struct device *child, struct device_attribute *attr, const char *buf, size_t size) oneshot_count_store() argument
134 enable_show(struct device *child, struct device_attribute *attr, char *buf) enable_show() argument
144 enable_store(struct device *child, struct device_attribute *attr, const char *buf, size_t size) enable_store() argument
179 polarity_show(struct device *child, struct device_attribute *attr, char *buf) polarity_show() argument
200 polarity_store(struct device *child, struct device_attribute *attr, const char *buf, size_t size) polarity_store() argument
225 capture_show(struct device *child, struct device_attribute *attr, char *buf) capture_show() argument
256 pwm_export_release(struct device *child) pwm_export_release() argument
303 pwm_unexport_match(struct device *child, void *data) pwm_unexport_match() argument
310 struct device *child; pwm_unexport_child() local
405 struct device *child; pwm_class_get_state() local
[all...]
/foundation/arkui/ace_engine/adapter/ohos/entrance/ui_session/
H A Dui_session_json_util.cpp50 cJSON* child = cJSON_CreateString(value); in Put() local
51 if (child == nullptr) { in Put()
54 cJSON_AddItemToObject(object_, key, child); in Put()
93 cJSON* child = cJSON_CreateNumber(static_cast<double>(value)); in Put() local
94 if (child == nullptr) { in Put()
97 cJSON_AddItemToObject(object_, key, child); in Put()
107 cJSON* child = cJSON_CreateNumber(static_cast<double>(value)); in Put() local
108 if (child == nullptr) { in Put()
111 cJSON_AddItemToObject(object_, key, child); in Put()
126 cJSON* child in Put() local
140 cJSON* child = cJSON_CreateBool(value); Put() local
154 cJSON* child = cJSON_CreateString(value); Replace() local
[all...]
/third_party/ltp/testcases/misc/math/float/trigo/
H A Dgentrigo.c70 pid_t child; in main() local
81 child = create_file(funct, 0); in main()
82 waitpid(child, NULL, 0); in main()
85 child = create_file(funct, 0); in main()
86 waitpid(child, NULL, 0); in main()
89 child = create_file(funct, 0); in main()
90 waitpid(child, NULL, 0); in main()
93 child = create_file(funct, 0); in main()
94 waitpid(child, NULL, 0); in main()
97 child in main()
[all...]
/third_party/ltp/testcases/misc/math/float/exp_log/
H A Dgenexp_log.c69 pid_t child; in main() local
80 child = create_file(funct, 0); in main()
81 waitpid(child, NULL, 0); in main()
84 child = create_file(funct, 0); in main()
85 waitpid(child, NULL, 0); in main()
88 child = create_file(funct, 0); in main()
89 waitpid(child, NULL, 0); in main()
92 child = create_file(funct, 0); in main()
93 waitpid(child, NULL, 0); in main()
96 child in main()
[all...]

Completed in 10 milliseconds

12345678910>>...82