Skip to content

Commit

Permalink
Version up to 3.9.7
Browse files Browse the repository at this point in the history
Signed-off-by: Peace Lee <[email protected]>
  • Loading branch information
iipeace committed Mar 8, 2020
1 parent a86cfe0 commit e201901
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -996,25 +996,29 @@ COMMAND:
start <Signal>
[LOG] logdlt <DLT>
logjrl <Journal>
logkmsg <Kernel>
logsys <Syslog>
printdlt <DLT>
printkmsg <Kernel>
printsyslog <Syslog>
[MONITOR] bgtop <Background>
brktop <Breakpoint>
btop <Breakpoint>
dbustop <D-Bus>
disktop <Storage>
dlttop <DLT>
filetop <File>
ftop <File>
memtop <Memory>
nettop <Network>
perftop <PMU>
reptop <JSON>
stacktop <Stack>
systemtop <System>
sttop <System>
systop <syscall>
threadtop <Thread>
top <Process>
usertop <Function>
ttop <Thread>
utop <Function>
wsstop <Memory>
[PROFILE] filerec <File>
Expand All @@ -1029,12 +1033,13 @@ COMMAND:
memtest <Memory>
[TRACE] btrace <Breakpoint>
sigtrace <Signal>
strace <Syscall>
utrace <Function>
[UTIL] addr2sym <Symbol>
getafnt <Affinity>
kill <Signal>
kill/tkill <Signal>
leaktrace <Leak>
limitcpu <CPU>
pause <Thread>
Expand All @@ -1049,6 +1054,7 @@ COMMAND:
setcpu <Clock>
setsched <Priority>
sym2addr <Address>
systat <Status>
topdiff <Diff>
[VISUAL] convert <Text>
Expand Down
6 changes: 3 additions & 3 deletions guider/guider.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
__module__ = "guider"
__credits__ = "Peace Lee"
__license__ = "GPLv2"
__version__ = "3.9.6"
__revision__ = "200308"
__version__ = "3.9.7"
__revision__ = "200309"
__maintainer__ = "Peace Lee"
__email__ = "[email protected]"
__repository__ = "https://github.com/iipeace/guider"
Expand Down Expand Up @@ -26510,7 +26510,7 @@ def doExit():
@staticmethod
def getFileList(path, incFile=True, incDir=False):
flist = list()
for r, d, f in os.walk(path):
for r, d, f in os.walk(path):
if incFile:
for sfile in f:
flist.append(os.path.join(r, sfile))
Expand Down
4 changes: 2 additions & 2 deletions guider_3.9.6.bb → guider_3.9.7.bb
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ AUTHOR = "Peace Lee <[email protected]>"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://LICENSE;md5=2c1c00f9d3ed9e24fa69b932b7e7aff2"

PV = "3.9.6+git${SRCPV}"
PV = "3.9.7+git${SRCPV}"
PR = "r0"

SRC_URI = "git://github.com/iipeace/${BPN}"
#SRCREV = "${AUTOREV}"
SRCREV = "fef25c41efb9bde0614ea477d0b90bd9565ae0b4"
SRCREV = "bcf107b73dcd3613cfd8f3f68402547ba8f15701"

S = "${WORKDIR}/git"
R = "${RECIPE_SYSROOT}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name = 'guider',
version = '3.9.6',
version = '3.9.7',
license = 'GPL2',
description = 'A system-wide analyzer of performance',
author = 'Peace Lee',
Expand Down

0 comments on commit e201901

Please sign in to comment.