public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: LONY David <david.lony@pragmadev.com>
To: ecos-discuss@ecos.sourceware.org
Subject: [ECOS] Question about def_alm (UITRON)
Date: Fri, 04 May 2007 09:40:00 -0000	[thread overview]
Message-ID: <463AFFE8.10703@pragmadev.com> (raw)

Hi all,

I wrote a small program which define an alarm (def_alm function). I 
wanted to know if eCos with UITRON compatibilty support extended 
informations (VP attribute) and if it supported how I can have them when 
the handler (alarm_hand) is called.
This is my program :

#include <cyg/compat/uitron/uit_func.h>
#include <stdio.h>

void alarm_hand(void* a)
{
  char test_chaine[]="test chaine";
  printf("In alarm_hand param a-->%s   test_chaine--->%s\n",a,test_chaine);
}

int main()
{
  T_DALM dalm;
  int retval;
 
  char chaine[]="salut";
  VP info = (VP)chaine;
 
  dalm.exinf  = (VP)info;
  dalm.almatr = TA_HLNG;
  dalm.almhdr = (FP)&alarm_hand;
  dalm.tmmode = TTM_REL;                
  dalm.almtim = 1000;
 
  retval = def_alm(20, &dalm);
 
  if(retval != E_OK)
    {
      printf("Error --> Cannot create a alarm in main %d !!!\n",retval);
    }
  else
    {
      printf("Good --> I succeded to create a alarm in main! \n");
      printf("I finish to create a alarm and RETVAL equals %d\n",retval);
    }

  return 0;
}

Does I make something wrong ? I debug this program in GDB, and I cannot 
have the extended information....
This is GDB output :
Good --> I succeded to create a alarm in main!
I finish to create a alarm and RETVAL equals 0
In alarm_hand param a-->   test_chaine--->test chaine

Thanks a lot.
David




-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

             reply	other threads:[~2007-05-04  9:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-04  9:40 LONY David [this message]
2007-05-07  8:12 ` LONY David

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=463AFFE8.10703@pragmadev.com \
    --to=david.lony@pragmadev.com \
    --cc=ecos-discuss@ecos.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).