Overview
Comment: | Added UNIX command-workalikes for dmesg/ulimit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
55756e001412ffc33739ca8d4b1bc1f1 |
User & Date: | rkeene on 2014-11-03 17:15:27 |
Other Links: | manifest | tags |
Context
2014-11-03
| ||
18:00 | Work towards a better ifconfig interface check-in: e28b7fa02d user: rkeene tags: trunk | |
17:15 | Added UNIX command-workalikes for dmesg/ulimit check-in: 55756e0014 user: rkeene tags: trunk | |
16:34 | Implemented rlimit and klogctl check-in: 9b491cd779 user: rkeene tags: trunk | |
Changes
Modified tuapi.tcl from [01f421e4ee] to [271a0d4ae4].
︙ | ︙ | |||
550 551 552 553 554 555 556 557 | close $fd } } puts [format $format $pidinfo(uid) $pidinfo(pid) $pidinfo(ppid) $pidinfo(cpuutil) $pidinfo(starttime) $pidinfo(tty) $pidinfo(cputime) $pidinfo(cmd)] } } } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 | close $fd } } puts [format $format $pidinfo(uid) $pidinfo(pid) $pidinfo(ppid) $pidinfo(cpuutil) $pidinfo(starttime) $pidinfo(tty) $pidinfo(cputime) $pidinfo(cmd)] } } proc ::dmesg {} { puts [::tuapi::syscall::klogctl read] } proc ::ulimit {limit {val ""}} { set mapping(-c) [list CORE] set mapping(-d) [list DATA] set mapping(-e) [list NICE] set mapping(-f) [list FSIZE] set mapping(-i) [list SIGPENDING] set mapping(-l) [list MEMLOCK] set mapping(-m) [list RSS] set mapping(-n) [list NOFILE] set mapping(-q) [list MSGQUEUE] set mapping(-r) [list RTPRIO] set mapping(-s) [list STACK] set mapping(-t) [list CPU] set mapping(-u) [list NPROC] set mapping(-v) [list AS] set mapping(-x) [list LOCKS] set help(CORE) {core file size (blocks, -c)} set help(DATA) {data seg size (kbytes, -d)} set help(NICE) {scheduling priority (-e)} set help(FSIZE) {file size (blocks, -f)} set help(SIGPENDING) {pending signals (-i)} set help(MEMLOCK) {max locked memory (kbytes, -l)} set help(RSS) {max memory size (kbytes, -m)} set help(NOFILE) {open files (-n)} set help(-p) {pipe size (512 bytes, -p)} set help(MSGQUEUE) {POSIX message queues (bytes, -q)} set help(RTPRIO) {real-time priority (-r)} set help(STACK) {stack size (kbytes, -s)} set help(CPU) {cpu time (seconds, -t)} set help(NPROC) {max user processes (-u)} set help(AS) {virtual memory (kbytes, -v)} set help(LOCKS) {file locks (-x)} foreach {limitopt limitoptvals} [array get mapping] { foreach limitoptval $limitoptvals { lappend mapping(-a) $limitoptval } } set opts $mapping($limit) if {[llength $opts] != 1 && $val != ""} { return -code error "Unable to set multiple limits" } foreach opt $opts { unset -nocomplain optval if {$val != ""} { catch { ::tuapi::syscall::rlimit set $opt $val } set include_help "" } else { set include_help "$help($opt) " } catch { set optval [::tuapi::syscall::rlimit get $opt] } if {![info exists optval]} { continue } puts "${include_help}$optval" } } } |