FreeBSD Bugzilla – Attachment 199688 Details for
Bug 233667
[patch] top(1): Add missing display messages when toggling modes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch file
top.diff (text/plain), 997 bytes, created by
James Wright
on 2018-11-30 17:09:13 UTC
(
hide
)
Description:
Patch file
Filename:
MIME Type:
Creator:
James Wright
Created:
2018-11-30 17:09:13 UTC
Size:
997 bytes
patch
obsolete
>Index: usr.bin/top/top.c >=================================================================== >--- usr.bin/top/top.c (revision 340650) >+++ usr.bin/top/top.c (working copy) >@@ -985,6 +985,9 @@ > break; > case CMD_viewtog: > displaymode = displaymode == DISP_IO ? DISP_CPU : DISP_IO; >+ new_message(MT_standout | MT_delayed, >+ " Displaying %s stats", >+ displaymode == DISP_IO ? "IO" : "CPU"); > header_text = format_header(uname_field); > display_header(true); > d_header = i_header; >@@ -992,9 +995,15 @@ > break; > case CMD_viewsys: > ps.system = !ps.system; >+ new_message(MT_standout | MT_delayed, >+ " %sisplaying system processes", >+ ps.system ? "D" : "Not d"); > break; > case CMD_showargs: > fmt_flags ^= FMT_SHOWARGS; >+ new_message(MT_standout | MT_delayed, >+ " %sisplaying process args", >+ fmt_flags & FMT_SHOWARGS ? "D" : "Not d"); > break; > case CMD_order: > new_message(MT_standout,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 233667
:
199688
|
199690