代码搜索结果
找到约 10,000 项符合
PID 的代码
dtree.js
var path =
'';
// Node object
function Node(id, pid, name, url, title, target, icon, iconOpen, open) {
this.id = id;
this.pid = pid;
this.name = name;
this.url = url;
this.title = titl
netd
#!/bin/sh
base=inetd
# See how we were called.
case "$1" in
start)
/usr/sbin/$base
;;
stop)
pid=`/bin/pidof $base`
if [ -n "$pid" ]; then
kill -9 $pid
fi
;;
esac
exit 0
leds
#!/bin/sh
base=led-player
# See how we were called.
case "$1" in
start)
/sbin/$base &
;;
stop)
pid=`/bin/pidof $base`
if [ -n "$pid" ]; then
kill -9 $pid
fi
;;
esac
exit
leds
#!/bin/sh
base=led-player
# See how we were called.
case "$1" in
start)
/sbin/$base &
;;
stop)
pid=`/bin/pidof $base`
if [ -n "$pid" ]; then
kill -9 $pid
fi
;;
esac
exit
tree.js
function Node(id, pid, name, url, title, target, icon, iconOpen, open) {
this.id = id;
this.pid = pid;
this.name = name;
this.url = url;
this.title = title;
this.target = target;
thi
readme
----------------------------------------------
TrueTime version 1.13
Example: Simple PID Task Simulation
Directory: $DIR/examples/simple_pid
----------------------------------------------
1. INTRO