Overview
Comment: | Added "ps" command |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4ee619220ada40324e9911b6c00f4081 |
User & Date: | rkeene on 2014-10-30 19:16:56 |
Other Links: | manifest | tags |
Context
2014-11-03
| ||
16:34 | Implemented rlimit and klogctl check-in: 9b491cd779 user: rkeene tags: trunk | |
2014-10-30
| ||
19:16 | Added "ps" command check-in: 4ee619220a user: rkeene tags: trunk | |
15:52 | Added some basic UNIX commands check-in: b37f8d7df9 user: rkeene tags: trunk | |
Changes
Modified tuapi.tcl from [0e870c7074] to [01f421e4ee].
︙ | ︙ | |||
500 501 502 503 504 505 506 507 | puts "" } } proc ::modprobe args { ::tuapi::modprobe {*}$args } } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | puts "" } } proc ::modprobe args { ::tuapi::modprobe {*}$args } proc ::ps {} { set format {%-6s %5s %5s %3s %5s %-6s %8s %s} puts [format $format UID PID PPID C STIME TTY TIME CMD] foreach pid [lsort -dictionary [glob -nocomplain -directory /proc -tails {[0-9]*}]] { if {![string is integer $pid]} { continue } set procfile [file join /proc $pid] unset -nocomplain pidinfo catch { file stat $procfile pidinfo } if {![info exists pidinfo]} { continue } set pidinfo(pid) $pid set pidinfo(ppid) ? set pidinfo(cpuutil) ? set pidinfo(starttime) ? set pidinfo(tty) ? set pidinfo(cputime) ? set pidinfo(cmd) "" unset -nocomplain fd catch { set fd [open [file join $procfile cmdline]] } if {[info exists fd]} { set pidinfo(cmd) [string trim [join [split [read $fd] "\0\n\r"]]] close $fd unset fd } if {![info exists pidinfo(cmd)] || $pidinfo(cmd) == ""} { catch { set fd [open [file join $procfile comm]] } if {[info exists fd]} { set pidinfo(cmd) "\[[string trim [join [split [read $fd] "\0\n\r"]]]\]" close $fd } } puts [format $format $pidinfo(uid) $pidinfo(pid) $pidinfo(ppid) $pidinfo(cpuutil) $pidinfo(starttime) $pidinfo(tty) $pidinfo(cputime) $pidinfo(cmd)] } } } |