diff options
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/faq/top.mdwn | 16 | ||||
-rw-r--r-- | hurd/glibc.mdwn | 2 | ||||
-rw-r--r-- | hurd/glibc/internals.mdwn | 16 | ||||
-rw-r--r-- | hurd/running/gnu/universal_package_manager.mdwn | 1 | ||||
-rw-r--r-- | hurd/translator/nsmux.mdwn | 16 |
5 files changed, 43 insertions, 8 deletions
diff --git a/hurd/faq/top.mdwn b/hurd/faq/top.mdwn new file mode 100644 index 00000000..9e385c0f --- /dev/null +++ b/hurd/faq/top.mdwn @@ -0,0 +1,16 @@ +[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license +is included in the section entitled [[GNU Free Documentation +License|/fdl]]."]]"""]] + +[[!meta title="What is a replacement for procps' top?"]] + +Here is a replacement to use, until the real `top` works, which depends on +[[hurd/translator/procfs]] and some [[!taglink porting|open_issue_porting]]. + + $ while :; do ps -e -v -s CPU --top=22 -r; sleep 5; done diff --git a/hurd/glibc.mdwn b/hurd/glibc.mdwn index 454b8e34..bdfed833 100644 --- a/hurd/glibc.mdwn +++ b/hurd/glibc.mdwn @@ -18,4 +18,4 @@ For information about how the glibc integrates into the system, see sections [[Debugging_glibc|debugging/glibc]]. -[[Internals.]] +[[Internals]]. diff --git a/hurd/glibc/internals.mdwn b/hurd/glibc/internals.mdwn index 2ced0543..897da92e 100644 --- a/hurd/glibc/internals.mdwn +++ b/hurd/glibc/internals.mdwn @@ -10,7 +10,7 @@ License|/fdl]]."]]"""]] Some bits about this, some bits about that. ---- +# Controlling TTY Hurd controlling tty behavior is generally consistent with BSD's, including `TIOCSCTTY`. Linux also has `TIOCSCTTY` and it is harmless to use it there. @@ -19,3 +19,17 @@ zero). C.f. <http://lists.gnu.org/archive/html/bug-hurd/2009-10/msg00030.html> and the following messages. + +# Sinals + +[[Unix]] signals are implemented in glibc. + +In every process, signals are handled in a separate signal thread. + + [Why does kill hang sometimes?] + <youpi> kill send the signal to the process + <youpi> if the process is hung, killing waits + <youpi> signals should be just asynchronous, but apparently for some reason + Roland & co wanted some syunchronization + +[[!taglink open_issue_glibc]] diff --git a/hurd/running/gnu/universal_package_manager.mdwn b/hurd/running/gnu/universal_package_manager.mdwn index ecac8e21..74c1ac8b 100644 --- a/hurd/running/gnu/universal_package_manager.mdwn +++ b/hurd/running/gnu/universal_package_manager.mdwn @@ -153,3 +153,4 @@ To join the project just list your name below. 6. Ajish.B 7. Ambili.B 8. Abhradip Mukherjee + 9. Ermenegildo Fiorito diff --git a/hurd/translator/nsmux.mdwn b/hurd/translator/nsmux.mdwn index c07a30bd..d156772b 100644 --- a/hurd/translator/nsmux.mdwn +++ b/hurd/translator/nsmux.mdwn @@ -26,18 +26,22 @@ list. ## Source -`nsmux` translator can be obtained with the following command: +`nsmux` translator can be obtained with the following series of +commands: - $ git clone git://github.com/scolobb/nsmux.git + $ git clone git://git.sv.gnu.org/hurd/incubator.git nsmux + $ cd nsmux/ + $ git checkout -b nsmux origin/nsmux -`filter` translator can be obtained with the following command: +`filter` translator can be obtained with the following series of +commands: - $ git clone git://github.com/scolobb/filter.git + $ git clone git://git.sv.gnu.org/hurd/incubator.git filter + $ cd filter/ + $ git checkout -b filter origin/filter The filter is not yet working. -It is highly probable that soon the code will be moved to Savannah. - ## Namespace-based Translator Selection Namespace-based translator selection is the special technique of using |