Re: [9fans] env size limit

2009-10-29 Thread Andreas Zell
On 28 Okt., 10:42, rtrli...@googlemail.com (Robert Raschke) wrote: On Tue, Oct 27, 2009 at 9:21 PM, roger peppe rogpe...@gmail.com wrote: 2009/10/27 erik quanstrom quans...@coraid.com: On Tue Oct 27 12:52:52 EDT 2009, rogpe...@gmail.com wrote: the environment variable size limit is set to

Re: [9fans] env size limit

2009-10-29 Thread Robert Raschke
On Thu, Oct 29, 2009 at 9:42 AM, Andreas Zell z...@imageaccess.de wrote: On 28 Okt., 10:42, rtrli...@googlemail.com (Robert Raschke) wrote: On Tue, Oct 27, 2009 at 9:21 PM, roger peppe rogpe...@gmail.com wrote: for instance when there are a few thousand source files and one wants to link

Re: [9fans] env size limit

2009-10-29 Thread Andreas Zell
On 29 Okt., 11:15, rtrli...@googlemail.com (Robert Raschke) wrote: On Thu, Oct 29, 2009 at 9:42 AM, Andreas Zell z...@imageaccess.de wrote: On 28 Okt., 10:42, rtrli...@googlemail.com (Robert Raschke) wrote: On Tue, Oct 27, 2009 at 9:21 PM, roger peppe rogpe...@gmail.com wrote: for

Re: [9fans] iwp9 papers posted

2009-10-29 Thread Sergey Zhilkin
http://iwp9.org/papers/usb.pdf - this paper is wrong :( It's about email :) 2009/10/27 erik quanstrom quans...@quanstro.net: http://iwp9.org. i'm sure there are typos.  let me know offline. - erik -- С наилучшими пожеланиями Жилкин Сергей With best regards Zhilkin Sergey

Re: [9fans] iwp9 papers posted

2009-10-29 Thread erik quanstrom
http://iwp9.org/papers/usb.pdf - this paper is wrong :( It's about email :) fixed. please let me know off list. - erik

[9fans] sed question (OT)

2009-10-29 Thread Steve Simon
Sorry, not really the place for such questions but... I always struggle with sed, awk is easy but sed makes my head hurt. I am trying to capitalise the first tow words on each line (I could use awk as well but I have to use sed so it seems churlish to start another process). capitalising the

Re: [9fans] sed question (OT)

2009-10-29 Thread Lorenzo Bolla
To capitalize the first letter of each line wouldn't this be enough? s/^./\u/ L. On Thu, Oct 29, 2009 at 3:41 PM, Steve Simon st...@quintile.net wrote: Sorry, not really the place for such questions but... I always struggle with sed, awk is easy but sed makes my head hurt. I am trying to

Re: [9fans] sed question (OT)

2009-10-29 Thread W B Hacker
Steve Simon wrote: Sorry, not really the place for such questions but... I always struggle with sed, awk is easy but sed makes my head hurt. I am trying to capitalise the first tow words on each line (I could use awk as well but I have to use sed so it seems churlish to start another process).

Re: [9fans] sed question (OT)

2009-10-29 Thread erik quanstrom
To capitalize the first letter of each line wouldn't this be enough? s/^./\u/ ; echo abc def | sed 's/^.\u/' sed: s command garbled: s/^.\u/ - erik

Re: [9fans] sed question (OT)

2009-10-29 Thread Iruata Souza
On Thu, Oct 29, 2009 at 2:08 PM, erik quanstrom quans...@quanstro.net wrote: To capitalize the first letter of each line wouldn't this be enough? s/^./\u/ ; echo abc def | sed 's/^.\u/' sed: s command garbled: s/^.\u/ i guess you missed the second slash

Re: [9fans] sed question (OT)

2009-10-29 Thread erik quanstrom
On Thu Oct 29 12:31:23 EDT 2009, iru.mu...@gmail.com wrote: On Thu, Oct 29, 2009 at 2:08 PM, erik quanstrom quans...@quanstro.net wrote: To capitalize the first letter of each line wouldn't this be enough? s/^./\u/ ; echo abc def | sed 's/^.\u/' sed: s command garbled: s/^.\u/ i

Re: [9fans] sed question (OT)

2009-10-29 Thread Iruata Souza
On Thu, Oct 29, 2009 at 2:06 PM, Lorenzo Bolla lbo...@gmail.com wrote: To capitalize the first letter of each line wouldn't this be enough? s/^./\u/ L. % echo rwrong | sed 's/^./\u/' urwrong

Re: [9fans] sed question (OT)

2009-10-29 Thread Lorenzo Bolla
I forgot the 9. This works for GNU sed version 4.2.1 L. On Thu, Oct 29, 2009 at 4:33 PM, Iruata Souza iru.mu...@gmail.com wrote: On Thu, Oct 29, 2009 at 2:06 PM, Lorenzo Bolla lbo...@gmail.com wrote: To capitalize the first letter of each line wouldn't this be enough? s/^./\u/ L. %

Re: [9fans] [9ans] Question about network protocols

2009-10-29 Thread matt
ty ty wrote: i haven't found any with grep I find this quite good for browsing the source in a web browser http://fxr.watson.org/fxr/source/?v=PLAN9 ipattach is referenced here http://fxr.watson.org/fxr/ident?v=PLAN9;i=ipattach

Re: [9fans] sed question (OT)

2009-10-29 Thread Jason Catena
Sorry, not really the place for such questions but... Try stackoverflow.com. They delight in problems such as these. I am trying to capitalise the first tow words on each line I store the original line with h, and then pull it back out repeatedly with G to mangle it. I got far enough to

Re: [9fans] Venti over DHT

2009-10-29 Thread Enrico Weigelt
Roman Shaposhnik wrote: On Tue, Oct 20, 2009 at 8:53 PM, Enrico Weigelt weig...@metux.de wrote: So I added several block types: eg. blob (payload data) and inode (holding the tree). From these I infer that you've build an object store, not just a block sotre. How close was it to this:

[9fans] core2 embedded boards

2009-10-29 Thread ron minnich
or K8 embedded. I need boards that can support hardware virtualization, but are cheap and small. The Kontron is an option; is there something better nowadays? ron

Re: [9fans] android hacking?

2009-10-29 Thread Enrico Weigelt
Tim Newsham wrote: Anyone playing with android phones? There's a lot of devices on it that might be interesting to export. Would be pretty easy to make a 9p server that gives you access to the GPS positioning, the accelerometer, or processed position (compass, pitch, roll), etc.. That's

Re: [9fans] automatic page sharing

2009-10-29 Thread Enrico Weigelt
Russ Cox wrote: Hi, Assuming statically linked-in libraries are properly aligned, we'll have lots of equal pages in the system, so the kernel could find and automatically map them together. This is not true. When static libraries are linked into a target binary, only the necessary

Re: [9fans] android hacking?

2009-10-29 Thread Tim Newsham
We're currently designing a new (9p-based) interface for these kind of vector devices @gpm-dev. What's gpm-dev? Can you provide more info? cu Tim Newsham http://www.thenewsh.com/~newsham/

Re: [9fans] automatic page sharing

2009-10-29 Thread Ethan Grammatikidis
On Thu, 29 Oct 2009 21:25:59 +0100 Enrico Weigelt weig...@metux.de wrote: Russ Cox wrote: Hi, Assuming statically linked-in libraries are properly aligned, we'll have lots of equal pages in the system, so the kernel could find and automatically map them together. This is not

Re: [9fans] automatic page sharing

2009-10-29 Thread erik quanstrom
insightful post Pardon if this has come up before, but what about the greatly increased time taken to launch a shared-lib program? That's quite i just built a trivial executable on linux x86-64 with a main that calls exit(0) as its only action. the executable is 722905 bytes (which is larget

Re: [9fans] automatic page sharing

2009-10-29 Thread Lyndon Nerenberg (VE6BBM/VE7TFX)
contrast /386/bin/sleep, a non-trivial executable, at 4422 bytes on my system — 100x smaller. #include u.h #includelibc.h int main(void){exits(nil);} is 3317 bytes on my atom box.

Re: [9fans] double wakeup disallowed

2009-10-29 Thread Russ Cox
btw, isn't the lockstats.locks++ in taslock:/^lock broken since 1 loads can happen simultaneously leading to undercounting? sure but does it need to be 100% accurate? russ