代码搜索:clone

找到约 4,459 项符合「clone」的源代码

代码结果 4,459
www.eeworm.com/read/230048/6789173

java snake.java

//: appendixa:Snake.java // Tests cloning to see if destination // of references are also cloned. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright noti
www.eeworm.com/read/195379/8159925

lua calculator.lua

-- Scrollbar BaseScrollbar = { Properties = { scrollfillcolor = Color.rgbp(255, 255, 255, 50); scrollhandlecolor = Color.rgb(102, 102, 102); scrollcolor = Color.none;
www.eeworm.com/read/394238/8241369

-+

any problems, send mails to sindybear@163.com 相关文件 /kernel/exit.c /arch/i386/kernel/process.c 内核线程的创建过程如下 (1)调用kernel_thread函数,将要建立内核线程的函数名告知这个函数。 (2)在线程函数中调用daemonize函数将这个线程和具体的调用进程相脱离。
www.eeworm.com/read/172577/9701038

c fork.c

/* * linux/kernel/fork.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * 'fork.c' contains the help-routines for the 'fork' system call * (see also entry.S and others). * Fork is rathe
www.eeworm.com/read/147969/12506814

html destruct.html

www.eeworm.com/read/147969/12506853

html new.html

www.eeworm.com/read/133636/14032865

txt 9.txt

上机作业九 1、Linux系统提供fork( )、clone( )和vfork( )这三个系统调用用于进程的创建。这三个函数都是通过调用do_fork( )来实现具体创建工作的。试读内核源码(/usr/src/linux-2.4/kernel/fork.c),分析do_fork()具体作了哪些工作? 2、编写一个程序myshell.c实现如下功能: (1)、显示提示符“>”。 (2)、
www.eeworm.com/read/235702/14055616

c asn1p_value.c

#include #include #include #include #include "asn1parser/asn1parser.h" asn1p_value_t * asn1p_value_fromref(asn1p_ref_t *ref, int do_copy) { if(ref) { a
www.eeworm.com/read/235702/14055635

c asn1p_expr.c

#include #include #include #include #include #include "asn1parser/asn1parser.h" #include static asn1p_expr_t *asn1p_expr_clone_impl(a
www.eeworm.com/read/132541/14085434

java quiz7_4.java

public class Quiz7_4 { String s = "Good morning!"; public Object clone() throws CloneNotSupportedException { Quiz7_4 result = (Quiz7_4) super.clone(); return result;