diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2011-09-18 23:19:12 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2011-09-18 23:19:12 +0200 |
commit | 80dd4a89c7060b81a85121f2fd27ed81a388200c (patch) | |
tree | 444468833533621d4b994a214e1992112db28def /glibc | |
parent | b4880a0af9876213f30c13d51edf95409580b9f0 (diff) |
open_issues/glibc: Update.
Diffstat (limited to 'glibc')
-rw-r--r-- | glibc/debugging/ld_so_console.mdwn | 3 | ||||
-rw-r--r-- | glibc/fork.mdwn | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/glibc/debugging/ld_so_console.mdwn b/glibc/debugging/ld_so_console.mdwn index d36317b6..b3d1762f 100644 --- a/glibc/debugging/ld_so_console.mdwn +++ b/glibc/debugging/ld_so_console.mdwn @@ -15,3 +15,6 @@ example, there's a private `__libc_write`, which you should be able to use for writing to FD stderr -- but, at early `ld.so` startup, this isn't usable as `_hurd_init_dtable` is still all zeros, etc. To get you started, here is a simple [[dl-sysdep.c.patch]] to get access to the Mach console. + +Can this be integrated with the other debugging printf functions from +`elf/dl-misc.c` (`_dl_debug_vdprintf`) ([[!taglink open_issue_glibc]])? diff --git a/glibc/fork.mdwn b/glibc/fork.mdwn index 496dc743..9417106d 100644 --- a/glibc/fork.mdwn +++ b/glibc/fork.mdwn @@ -1,4 +1,4 @@ -[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]] +[[!meta copyright="Copyright © 2010, 2011 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 @@ -50,6 +50,9 @@ they have patches for software packages, to avoid using `fork` followed by __mach_port_allocate_name ([...]); if (err == KERN_NAME_EXISTS)` code ([[!taglink open_issue_glibc]]). + * Can we/why can't we use the concept of *inherited ports + array*s/`mach_ports_register` ([[!taglink open_issue_glibc]])? + ## Related |