星期一, 五月 31, 2010

借光(黑白记录)

IMG_5935

星期六, 五月 29, 2010

周6(日记)

早上,发现跟天气预报说的不同, 大晴天,为没找人空调移机而不爽,查了下天气预报,还是报雷阵雨,自我安慰下,一会没准就变天了。

早饭吃米线,发现汽锅鸡的容器颜色非常类似家里的紫砂锅,觉得是跟紫砂锅一样是泥巴用化工原料染色弄的,影响了吃饭的情绪。

吃完早饭收拾乱放的单据,发现家里的紫砂锅竟然不是美的是九阳的,觉得退不了而且也不敢再用,觉得很杯具。

下午无意间查了下,发现九阳的也可以换掉,很欣慰,希望明天空调弄完就能去退掉。

现在,已经这个点了,完全没下过雨,不知道明天弄空调的什么时候能来,反正还没联系过我,现在天气预报是阴天,希望别报错了最后工人一来下雨了。

星期五, 五月 28, 2010

2010-05-01 阳台山[10](徒步)

IMG_5594

IMG_5601

星期四, 五月 27, 2010

全能修理摊(黑白记录)

IMG_5902

星期三, 五月 26, 2010

电话诉乡愁(黑白记录)

IMG_5924

星期二, 五月 25, 2010

MTEE 的广告(摄影日记)

很好玩的广告 上面一堆动画人物 全是巨星啊!

IMG_5660

星期一, 五月 24, 2010

休闲时光(黑白记录)

IMG_5900

星期五, 五月 21, 2010

2010-05-01 阳台山[9](徒步)

IMG_5583

IMG_5589

星期四, 五月 20, 2010

在路上(黑白记录)

IMG_5632

星期三, 五月 19, 2010

Prec speed up demo patch(GDB)


Still not support segment registers, system call and some others.

To get message about the idea,  Goto http://sourceware.org/ml/gdb/2010-04/msg00161.html .

2010-05-01 阳台山[8](徒步)

IMG_5578

星期二, 五月 18, 2010

2010-05-01 阳台山[7](徒步)

IMG_5559

IMG_5561

2010-05-01 阳台山[6](徒步)

IMG_5539

星期一, 五月 17, 2010

2010-05-01 阳台山[5](徒步)

IMG_5536

星期五, 五月 14, 2010

2010-05-01 阳台山[4](徒步)

IMG_5534

星期四, 五月 13, 2010

2010-05-01 阳台山[3](徒步)

IMG_5533远眺凤凰岭 那里云雾缭绕的

星期三, 五月 12, 2010

Hellogcc IRC交流(IT)

windows下可以用mirc,linux下也可以用pidgin,xchat等。也有网页版https://webchat.freenode.net的支持。

服务器: irc.ubuntu.com
房间: #hellogcc

IRC的好处,是可以即时,群聊。

The topic for #hellogcc is: 讨论GNU工具链相关话题

猫小鱼

IMG_5613

星期二, 五月 11, 2010

2010-05-01 阳台山[2](徒步)

IMG_5524


























IMG_5528

星期一, 五月 10, 2010

2010-05-01 阳台山[1](徒步)

http://maps.google.com/maps/ms?ie=UTF&msa=0&msid=103715033130741702401.000485b04f4111f00c61c
轨迹在这里

IMG_5513


























金山泉 非常有名的泉水 很多人在这里打水

IMG_5523


























星期六, 五月 08, 2010

猫小鱼

IMG_5609

星期五, 五月 07, 2010

2010-04-03 虎头山到水库[7](徒步)

20100403,八大处,徒步,水库

星期四, 五月 06, 2010

2010-04-03 虎头山到水库[6](徒步)

20100403,八大处,徒步,水库

星期三, 五月 05, 2010

猫小鱼

IMG_5610

星期二, 五月 04, 2010

2010-04-09 堵车(山西之旅)

20100409-20100416 山西之旅

星期一, 五月 03, 2010

2010-04-03 虎头山到水库[5](徒步)

20100403,八大处,徒步,水库

2010-04-09 长途车站(山西之旅)

20100409-20100416 山西之旅

星期日, 五月 02, 2010

rbreak break every functions in a file -- new gdb breakpoint command(GDB)

When I use the GDB, I always think about insert breakpoint to a file.
Then if inferior exec to any part of this file, the inferior will be
break. But GDB simple break command doesn't support it.

Now, gdb-cvs-head have a new command rbreak:
`rbreak REGEX'
Set breakpoints on all functions matching the regular expression
REGEX. This command sets an unconditional breakpoint on all
matches, printing a list of all breakpoints it set. Once these
breakpoints are set, they are treated just like the breakpoints
set with the `break' command. You can delete them, disable them,
or make them conditional the same way as any other breakpoint.

The syntax of the regular expression is the standard one used with
tools like `grep'. Note that this is different from the syntax
used by shells, so for instance `foo*' matches all functions that
include an `fo' followed by zero or more `o's. There is an
implicit `.*' leading and trailing the regular expression you
supply, so to match only functions that begin with `foo', use
`^foo'.

When debugging C++ programs, `rbreak' is useful for setting
breakpoints on overloaded functions that are not members of any
special classes.

The `rbreak' command can be used to set breakpoints in *all* the
functions in a program, like this:

(gdb) rbreak .

`rbreak FILE:REGEX'
If `rbreak' is called with a filename qualification, it limits the
search for functions matching the given regular expression to the
specified FILE. This can be used, for example, to set breakpoints
on every function in a given file:

(gdb) rbreak file.c:.

The colon separating the filename qualifier from the regex may
optionally be surrounded by spaces.

猫小鱼