public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: swagiaal@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: swagiaal: committed missing file funit-long-stack.c
Date: Thu, 22 Nov 2007 18:22:00 -0000	[thread overview]
Message-ID: <20071122182210.32522.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  af8238b8a4e17e2022f32197ce7030ecbb8e231a (commit)
      from  d4cb4466214f91e8742535701baae43d6e71a611 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit af8238b8a4e17e2022f32197ce7030ecbb8e231a
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date:   Thu Nov 22 13:18:41 2007 -0500

    swagiaal: committed missing file funit-long-stack.c
    
    +2007-11-22  Sami Wagiaalla  <swagiaal@toner.toronto.redhat.com>
    +
    +       * funit-long-stack.c: New.
    +

-----------------------------------------------------------------------

Summary of changes:
 frysk-core/frysk/pkglibdir/ChangeLog          |    4 ++++
 frysk-core/frysk/pkglibdir/funit-long-stack.c |   24 ++++++++++++++++++++++++
 2 files changed, 28 insertions(+), 0 deletions(-)
 create mode 100644 frysk-core/frysk/pkglibdir/funit-long-stack.c

First 500 lines of diff:
diff --git a/frysk-core/frysk/pkglibdir/ChangeLog b/frysk-core/frysk/pkglibdir/ChangeLog
index 1e149f8..a01c217 100644
--- a/frysk-core/frysk/pkglibdir/ChangeLog
+++ b/frysk-core/frysk/pkglibdir/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-22  Sami Wagiaalla  <swagiaal@toner.toronto.redhat.com>
+
+	* funit-long-stack.c: New.
+
 2007-11-22  Andrew Cagney  <cagney@redhat.com>
 
 	* gen-type-funit-tests.py: Do not import "subprocess".
diff --git a/frysk-core/frysk/pkglibdir/funit-long-stack.c b/frysk-core/frysk/pkglibdir/funit-long-stack.c
new file mode 100644
index 0000000..b5f5ddb
--- /dev/null
+++ b/frysk-core/frysk/pkglibdir/funit-long-stack.c
@@ -0,0 +1,24 @@
+#include <stdlib.h>
+
+void crash(){
+  char* c = 0;
+  c[0] = 'a';
+}
+
+void first(int stack){
+
+  if(stack < 50){
+    first(stack+1);
+  }else{
+    crash();
+  }
+}
+
+
+int main(){
+
+  first (0);
+
+  return 0;
+}
+


hooks/post-receive
--
frysk system monitor/debugger


                 reply	other threads:[~2007-11-22 18:22 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20071122182210.32522.qmail@sourceware.org \
    --to=swagiaal@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).