* request of suggestions for mini-OS debugger
@ 2011-01-13 11:04 kim.jin
2011-01-13 11:45 ` Samuel Thibault
0 siblings, 1 reply; 6+ messages in thread
From: kim.jin @ 2011-01-13 11:04 UTC (permalink / raw)
To: xen-devel
Hi all,
Do you think the mini-OS need debugger? I will try to implement it. I have two methods, first follow KDB, and the other follow KGDB.
What's your opinions? And can you please give some suggestions? Waiting for your good ideas!
--------------
Best Regards!
Kim King
2011-01-13
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: request of suggestions for mini-OS debugger
2011-01-13 11:04 request of suggestions for mini-OS debugger kim.jin
@ 2011-01-13 11:45 ` Samuel Thibault
2011-01-13 12:16 ` kim.jin
0 siblings, 1 reply; 6+ messages in thread
From: Samuel Thibault @ 2011-01-13 11:45 UTC (permalink / raw)
To: kim.jin; +Cc: xen-devel
kim.jin, le Thu 13 Jan 2011 19:04:57 +0800, a écrit :
> Do you think the mini-OS need debugger? I will try to implement it. I have two methods, first follow KDB, and the other follow KGDB.
> What's your opinions? And can you please give some suggestions? Waiting for your good ideas!
I used to simply use the gdbserver that was in tools/debugger.
Samuel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: request of suggestions for mini-OS debugger
2011-01-13 11:45 ` Samuel Thibault
@ 2011-01-13 12:16 ` kim.jin
2011-01-13 12:36 ` Samuel Thibault
0 siblings, 1 reply; 6+ messages in thread
From: kim.jin @ 2011-01-13 12:16 UTC (permalink / raw)
To: Samuel Thibault; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 723 bytes --]
Samuel Thibault
2011-01-13 19:45:17
kim.jin
xen-devel
Re: [Xen-devel] request of suggestions for mini-OS debugger
>kim.jin, le Thu 13 Jan 2011 19:04:57 +0800, a écrit :
>> Do you think the mini-OS need debugger? I will try to implement it. I have two methods, first follow KDB, and the other follow KGDB.
>> What's your opinions? And can you please give some suggestions? Waiting for your good ideas!
>
>I used to simply use the gdbserver that was in tools/debugger.
>
>Samuel
You mean it already work well for mini-OS, right? sound nice! But can it support source level debug? And how can I test the nice tool? I knew it little, thanks!
------------------
Best Regards!
Kim King
2011-01-13
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: request of suggestions for mini-OS debugger
2011-01-13 12:16 ` kim.jin
@ 2011-01-13 12:36 ` Samuel Thibault
2011-01-13 12:38 ` Ian Campbell
2011-01-14 2:35 ` Re: Re: [Xen-devel] " kim.jin
0 siblings, 2 replies; 6+ messages in thread
From: Samuel Thibault @ 2011-01-13 12:36 UTC (permalink / raw)
To: kim.jin; +Cc: xen-devel
kim.jin, le Thu 13 Jan 2011 20:16:30 +0800, a écrit :
> Re: [Xen-devel] request of suggestions for mini-OS debugger
> >kim.jin, le Thu 13 Jan 2011 19:04:57 +0800, a écrit :
> >> Do you think the mini-OS need debugger? I will try to implement it. I have two methods, first follow KDB, and the other follow KGDB.
> >> What's your opinions? And can you please give some suggestions? Waiting for your good ideas!
> >
> >I used to simply use the gdbserver that was in tools/debugger.
> >
> >Samuel
>
> You mean it already work well for mini-OS, right?
It used to, yes.
> sound nice! But can it support source level debug?
Just like usual gdb support.
> And how can I test the nice tool? I knew it little, thanks!
I can't find it in the xen tree any more, I don't know what happened to
it.
Samuel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: request of suggestions for mini-OS debugger
2011-01-13 12:36 ` Samuel Thibault
@ 2011-01-13 12:38 ` Ian Campbell
2011-01-14 2:35 ` Re: Re: [Xen-devel] " kim.jin
1 sibling, 0 replies; 6+ messages in thread
From: Ian Campbell @ 2011-01-13 12:38 UTC (permalink / raw)
To: Samuel Thibault; +Cc: xen-devel, kim.jin
On Thu, 2011-01-13 at 12:36 +0000, Samuel Thibault wrote:
> kim.jin, le Thu 13 Jan 2011 20:16:30 +0800, a écrit :
> > Re: [Xen-devel] request of suggestions for mini-OS debugger
> > >kim.jin, le Thu 13 Jan 2011 19:04:57 +0800, a écrit :
> > >> Do you think the mini-OS need debugger? I will try to implement it. I have two methods, first follow KDB, and the other follow KGDB.
> > >> What's your opinions? And can you please give some suggestions? Waiting for your good ideas!
> > >
> > >I used to simply use the gdbserver that was in tools/debugger.
> > >
> > >Samuel
> >
> > You mean it already work well for mini-OS, right?
>
> It used to, yes.
>
> > sound nice! But can it support source level debug?
>
> Just like usual gdb support.
>
> > And how can I test the nice tool? I knew it little, thanks!
>
> I can't find it in the xen tree any more, I don't know what happened to
> it.
It was unloved and constantly broken so it was removed.
gdbsx is the replacement.
Ian.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Re: Re: [Xen-devel] request of suggestions for mini-OS debugger
2011-01-13 12:36 ` Samuel Thibault
2011-01-13 12:38 ` Ian Campbell
@ 2011-01-14 2:35 ` kim.jin
1 sibling, 0 replies; 6+ messages in thread
From: kim.jin @ 2011-01-14 2:35 UTC (permalink / raw)
To: Ian Campbell, Samuel Thibault; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]
Wooo! It looks we have newer weapon. Can you help me to begin use it?
BTW, I will dig into the gdbsx, maybe also gdbserver. And my at last aim is: make debugging for mini-OS easy and powerfull enough. If anyone of you have interesting, WELCOME!
------------------
Best Regards!
Kim King
2011-01-14
-------------------------------------------------------------
>On Thu, 2011-01-13 at 12:36 +0000, Samuel Thibault wrote:
>> kim.jin, le Thu 13 Jan 2011 20:16:30 +0800, a écrit :
>> > Re: [Xen-devel] request of suggestions for mini-OS debugger
>> > >kim.jin, le Thu 13 Jan 2011 19:04:57 +0800, a écrit :
>> > >> Do you think the mini-OS need debugger? I will try to implement it. I have two methods, first follow KDB, and the other follow KGDB.
>> > >> What's your opinions? And can you please give some suggestions? Waiting for your good ideas!
>> > >
>> > >I used to simply use the gdbserver that was in tools/debugger.
>> > >
>> > >Samuel
>> >
>> > You mean it already work well for mini-OS, right?
>>
>> It used to, yes.
>>
>> > sound nice! But can it support source level debug?
>>
>> Just like usual gdb support.
>>
>> > And how can I test the nice tool? I knew it little, thanks!
>>
>> I can't find it in the xen tree any more, I don't know what happened to
>> it.
>
>It was unloved and constantly broken so it was removed.
>
>gdbsx is the replacement.
>
>Ian.
>
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-01-14 2:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-13 11:04 request of suggestions for mini-OS debugger kim.jin
2011-01-13 11:45 ` Samuel Thibault
2011-01-13 12:16 ` kim.jin
2011-01-13 12:36 ` Samuel Thibault
2011-01-13 12:38 ` Ian Campbell
2011-01-14 2:35 ` Re: Re: [Xen-devel] " kim.jin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.