From vxwexplo-errs@csg.lbl.gov Tue May 1 01:41:39 2001 From: vinuta.shamasundar@philips.com Date: Tue May 1 01:41:41 PDT 2001 Subject: Re: Vxworks Hello, Please unsubscribe me from this news letter. i can't do it as my compnay intranet is not supporting me to do that, to go through hyperlink, From intranet to internet, and unsubscribe. Kindly do the needful. Thanking you. With kind regards. From vxwexplo-errs@csg.lbl.gov Tue May 1 06:57:23 2001 From: John Moore Date: Tue May 1 06:57:25 PDT 2001 Subject: Vectorcast - Unit Level Testing Hi, I'm looking at some automated test generation tools, Vectorcast specifically. I wondered if anyone had any comments about this product or something similar that would be used for unit testing (embedded, vxWorks). Thanks, John Moore jmoore@argoneng.com From vxwexplo-errs@csg.lbl.gov Tue May 1 09:45:00 2001 From: "Karyn Lawrence" Date: Tue May 1 09:45:02 PDT 2001 Subject: Opportunity All, I have a position available with a client of mine in Eastern Massachusetts . I am attaching the job description to this email. My client is most interested in candidates who have had significant experience in a VxWorks RTOS environment. This is a permanent opportunity and my client is considering only permanent candidates. Please email me with any interest in this position. Candidate will be a member of a small team responsible for the design and implementation of a Motorola 860 based PCI card with networking capabilities running the VxWorks real time OS. Candidate will be responsible for the design and implementation of a number of user level and driver level components. Highly desirable are: - TCP/IP knowledge - Unix, VxWorks, and/or NT driver experience - General embedded system experience - PC hardware experience (i.e. PCI, VGA, pcmcia) - Assembly code experience - subsystem will utilize JAVA programming, encryption technology, and HTTP. While experience in these areas is not required, the applicant must have a willingness to learn these and other new technologies. BS CS/EE required. Solid oral and written communication skills. The ability to work well in small groups. 5 or more years experience. Karyn Lawrence Whitridge Associates Inc. Account Manager 744 E. Squantum St. 617-472-2292 Ext.124 Quincy, MA 02171 karyn@whitridge.com www.whitridge.com "Contract and Full-Time IT and Software Staffing Services" From vxwexplo-errs@csg.lbl.gov Tue May 1 14:07:01 2001 From: "Mike Anderson" Date: Tue May 1 14:07:03 PDT 2001 Subject: RE: VxWorks Greetings! > Submitted-by: "Mamta Choudhary" > > Hi, > > We are using Tornado 2.0 evaluation version. In this we are facing some > problems in use of files: > When we try to open a pre-existing file or create a file with O_CREAT > and O_RDWR option it returns a valid file descriptor value. But when we > try to read or write from/to this file it gives error which are like > S_iosLib_INVALID_FILE_DESCRIPTOR, or > S_iosLib_DUPLICATE_DEVICE_NAME. > > Sometimes it successfully creates/opens a file and allows us to perform > read/write to the corresponding file. The whole behaviour of files in > VxSim seems very unpredictable to us. > Could u please enlighten us about file handling in VxSim. > In VxSim, you will have to open your file a little differently as VxSim uses the Passthrough filesystem. This means that you have to make sure that your target server has the target server file system (TSFS) turned on and R/W access is enabled. Next, to create a file, you'll need to specify the /tgtsvr device like this: -> fd = creat("/tgtsvr/mydir/myfile", 2) ; O_RDWR access Then you can use "normal" read/write/close etc. Here is an example from my system: -> fd2 = creat("/tgtsvr/u/pcteam0/projects/tester", 2) new symbol "fd2" added to symbol table. fd2 = 0x4a4ef5c: value = 21 = 0x15 -> write(fd2, buf, 20) value = 20 = 0x14 -> close(fd2) value = 0 = 0x0 Are we enlightened? HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." From vxwexplo-errs@csg.lbl.gov Wed May 2 02:10:25 2001 From: "sachin verma" Date: Wed May 2 02:10:27 PDT 2001 Subject: Tornado(Dead Task) Hi all Its related to previous problem of logMsg output i.e missing. But I now increased the msg buffering capacity by increasing the value of MAX_LOG_MSGS in configAll.h file. But what happened is ..Now output is not missing but a word "Dead Task" is coming appended to some output statements.. Like my problem was for(i=0;i<500;i++) logMsg("Vaue of i is now %d\n",i,0,0,0,0,0); n now the output coming upto 490 is ok but after that is like dead taskValue of i is now 491 dead taskValue of i is now 492 . . . . . dead taskValue of i is now 500 Now I don't know what dead task means n why it is coming..please tell me. _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. From vxwexplo-errs@csg.lbl.gov Wed May 2 04:41:39 2001 From: "Mike Anderson" Date: Wed May 2 04:41:41 PDT 2001 Subject: RE: Tornado(Dead Task) VxWorks Greetings! > Submitted-by: "sachin verma" > > Hi all > > Its related to previous problem of logMsg output i.e missing. > But I now increased the msg buffering capacity by > increasing the value of MAX_LOG_MSGS in configAll.h file. > But what happened is ..Now output is not missing but a word "Dead Task" > is coming appended to some output statements.. > > Like my problem was > for(i=0;i<500;i++) > logMsg("Vaue of i is now %d\n",i,0,0,0,0,0); > > > n now the output coming upto 490 is ok but after that is like > dead taskValue of i is now 491 > dead taskValue of i is now 492 > Part of the information that gets communicated to tLogTask in the logMsg is the task ID of the task that sent the message. What you are seeing is that the task is completing and exiting (hence dead) before the logTask has completed printing all of the messages in the logPipe. When tLogTask reads a message, it looks up the task ID and tries to get the task name to print. Since the task no longer exists, there is no name available, therefore tLogTask prints "Dead Task" as the task name. HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." From vxwexplo-errs@csg.lbl.gov Wed May 2 04:46:11 2001 From: "zz Fa.NewlinkSystems01" Date: Wed May 2 04:46:13 PDT 2001 Subject: AW: Tornado(Dead Task) Hi, The "dead task" reference within the logMsg output occurs because the logMsg is coming out after the task has completed and finished. Hence the taskId for the message can no longer be used by the tlogTask to associate it with the outgoing logMsg. This can be provd if you add a large taskDelay after the completion of the loop. In this way you should see that all the output messages are correctly formatted. Hope this helps. -----Ursprungliche Nachricht----- Von: vxwexplo@lbl.gov [mailto:vxwexplo@lbl.gov] Gesendet am: Mittwoch, 2. Mai 2001 11:12 An: vxworks_users@csg.lbl.gov Betreff: Tornado(Dead Task) Submitted-by vxwexplo-errs@csg.lbl.gov Wed May 2 02:10:25 2001 Submitted-by: "sachin verma" Hi all Its related to previous problem of logMsg output i.e missing. But I now increased the msg buffering capacity by increasing the value of MAX_LOG_MSGS in configAll.h file. But what happened is ..Now output is not missing but a word "Dead Task" is coming appended to some output statements.. Like my problem was for(i=0;i<500;i++) logMsg("Vaue of i is now %d\n",i,0,0,0,0,0); n now the output coming upto 490 is ok but after that is like dead taskValue of i is now 491 dead taskValue of i is now 492 ----------------------------------------------------------- This Mail has been checked for Viruses Attention: Encrypted Mails can NOT be checked ! *** Diese Mail wurde auf Viren ueberprueft Hinweis: Verschluesselte Mails koennen NICHT geprueft werden! ------------------------------------------------------------ From vxwexplo-errs@csg.lbl.gov Wed May 2 06:22:36 2001 From: fscheurer@manz-acs.de Date: Wed May 2 06:22:38 PDT 2001 Subject: Re: Tornado(Dead Task) Hi sachin, this behaviour is related to the first issue. If your logMsg's are as much that the executing task has already finished while the logTask is still processing them. Then no Task-ID can be given because the task isn't alive and probably out of the system's task tables. HTH, Regards F. Scheurer -------- Original Message -------- Subject: Tornado(Dead Task) (02-Mai-2001 13:40) From: vxwexplo@lbl.gov To: FScheurer@manz-acs.de > Submitted-by vxwexplo-errs@csg.lbl.gov Wed May 2 02:10:25 2001 > Submitted-by: "sachin verma" > > Hi all > > Its related to previous problem of logMsg output i.e missing. > But I now increased the msg buffering capacity by > increasing the value of MAX_LOG_MSGS in configAll.h file. > But what happened is ..Now output is not missing but a word "Dead Task" > is coming appended to some output statements.. > > Like my problem was > for(i=0;i<500;i++) > logMsg("Vaue of i is now %d\n",i,0,0,0,0,0); > > > n now the output coming upto 490 is ok but after that is like > dead taskValue of i is now 491 > dead taskValue of i is now 492 > > To: vxworks_users@csg.lbl.gov From vxwexplo-errs@csg.lbl.gov Wed May 2 10:55:06 2001 From: "Senthil K Kumar" Date: Wed May 2 10:55:08 PDT 2001 Subject: CPU Utilization and Memory Usage Hello All Is it possible to get the CPU utilization and memory Utilization on task basis or on whole system wide on the vxWorks. If so can you guys help me with the necessary calls or datastructures that are associated for getting the information. Thanks in advance Senthil K Kumar -------------------------------------------- IP Unity 1575 McCandless Drive Milpitas, CA 95035 Tel: (408)582 1127 Fax: (408)957 0823 ksekumar@ipunity.com From vxwexplo-errs@csg.lbl.gov Thu May 3 03:19:41 2001 From: Sunny Kunnumpuram Date: Thu May 3 03:19:43 PDT 2001 Subject: Could not enable second serial port of MBX860 Hi All, vxWorks Greetings. I am using Mbx860 -standard board from motorala and successfully ported vxWorks image with net_symbol_table.Now I am using the target shell at hyper terminal (not tornado shell) In target.nr file of this board it clearly says that the BSP does not support second serial port,but the BSP includes a driver for one peripheral chip called as superI/O which supports two serial ports and their initialisation I have configured SERIAL_PORT as SERIAL_PORT_COM If so why I am no getting the second serial port in my device listings? What modification in my BSP I have to make in order to get the second serial port enabled? Thanks for your time regards Sunny __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From vxwexplo-errs@csg.lbl.gov Thu May 3 05:04:21 2001 From: Diego Novellon Date: Thu May 3 05:04:23 PDT 2001 Subject: ads860 bootrom_res Hi, gurus. Has anybody been able to build bootrom_res for ads860 BSP? When I try to do so from Tornado (T2, W95) -> Build -> Build Boot ROM -> ads860, bootrom_res I get the following error: ---- ccppc -BC:\TORNADO\host\x86-win32\lib\gcc-lib\ -c -mcpu=860 -ansi -nostdinc -O2 -fvolatile -fno-builtin -fno-for-scope -Wall -I\h -I. -IC:\TORNADO\target\config\all -IC:\TORNADO\ target\h -IC:\TORNADO\target\src\config -IC:\TORNADO\target\src\drv -DCPU=PPC860 -o ve rsion.o C:\TORNADO\target\config\all\version.c ldppc -X -N -e _romInit \ -Ttext 02800100 -Tdata 00200000 -o bootrom_res romInit_res.o bootInit_res.o \ version.o bootConfig.o sysALib.o sysLib.o C:\TORNADO\target\lib\libPPC860gnuvx.a romInit_res.o(.text+0x37a): undefined reference to `RAM_DST_ADRS' romInit_res.o(.text+0x37e): undefined reference to `RAM_DST_ADRS' make.exe: *** [bootrom_res] Error 0x1 Done. ---- Is this a known problem? Is there a patch for this I should've applied? Thank you in advance for any hints. Diego Novellon P.S. A little bit off-topic... comp.os.vxworks messages aren't making it to the exploder lately. Anybody know of a good way to subscribing to the group _without_ access to USENET? I used to be email-subscribed through the excellent www.dejanews.com service, but since they were bought by google the news-to-email gateway hasn't worked any more. Is there any other way to get comp.os.vxworks postings to my mailbox? Thanks again!! ///////////////////////////////////////////////// // Diego Novellón Latre, Ing. en Informática // // Infr. TETRA, Dpto I+D, Teltronic S.A.U. // // Polígono Malpica, C/ F-Oeste, parcela 12 // // E50057 Zaragoza - Espańa // // Tel +34.976.465656 #278, fax +34.976.465722 // // http://www.teltronic.es/ // ///////////////////////////////////////////////// From vxwexplo-errs@csg.lbl.gov Thu May 3 05:50:33 2001 From: "zz Fa.NewlinkSystems01" Date: Thu May 3 05:50:35 PDT 2001 Subject: TFFS in vxWorks Hi All, Looking for some help with TFFS in VxWorks, we had JAVA applications that are running very slowly due to the access over the target server to teh host file system. Hence we started to use the TFFS that we have available. I have configured for a 128k cache at the minute, but dont notice as large a performance saving as I would have expected. My question is twofold: 1) Would you expect a performance increase when opening, reading and closing large numbers of files in this scenario. 2) Any suggestions on how to configure/improve perfomance within the system or TFFS specifically. Thanks in advance for any help, Dave. ----------------------------------------------------------- This Mail has been checked for Viruses Attention: Encrypted Mails can NOT be checked ! *** Diese Mail wurde auf Viren ueberprueft Hinweis: Verschluesselte Mails koennen NICHT geprueft werden! ------------------------------------------------------------ From vxwexplo-errs@csg.lbl.gov Thu May 3 12:13:55 2001 From: "Garner, William F (N-SDC)" Date: Thu May 3 12:13:57 PDT 2001 Subject: SNMP with Two End Devices Hi, We have two ethernet devices connected to the vxWorks MUX. How can we tell which ethernet Device triggered the Method Routine in the SNMP Agent? Bill From vxwexplo-errs@csg.lbl.gov Thu May 3 22:01:16 2001 From: "R R, Rajendra Prabhala (Rajendra)** CTR **" Date: Thu May 3 22:01:18 PDT 2001 Subject: Boot of vxworks vxWorks tornado Hi vxworkers, I have one question regarding the booting over network feature of vxWorks. Is it possible to boot a target board over ether net without using DHCP and using only TFTP ? I wish to enter the network parameters like host IP address, host name, target IP address, boot device and target name etc. manually using tornado tools when the target comes up for the first time. I wish to specify TFTP and enter boot file location manually. I expect the board later to boot automatically using TFTP to get the boot file from host. Does this work ? Is it mandatory that we have to use a combination like DHCP/BootP + TFTP/FTP to enable the target board to boot over ether net OR can I follow the above method ? I could not find related stuff in the manual. Request you to clarify this. Thanks and best regards, rajendra. Rajendra e-mail : rrr@lucent.com ;rajendra_prabhala@bbv.satyam.com Phone : +91- 80- 505 2167 From vxwexplo-errs@csg.lbl.gov Fri May 4 04:40:51 2001 From: Rashmi_Topno Date: Fri May 4 04:40:53 PDT 2001 Subject: logLib Hi All, There is a facility in vxWorks called "message logging" which is provided by the library logLib. What I could understand is, this is used when an I/O operation has to be done in ISR level, or at some point where we don't want to pend the task till the operation is over. So through logMsg we push the message into a queue and logTask (which starts at the time of launching the vxSim) takes the data from the queue. My queries are 1> Is the logTask takes the data from the queue and prints it out on the simulator screen? I am using vxSim. 2> How the priority of the logTask is managed? Will it be dynamically changed by the kernel so as to ensure that it will be always having lower priority than the priority of the task which is logging the msg? I am asking this question as it has been written that logMsg api doesn't make the current state waiting for the function to get executed. This means this should not get scheduled and logtask gets CPU time, while a task logs the msg. 3> I want to use my own logTask, instead of the OS deifned one. I want to have some other functionality within that task. How can I do that? Is it possible? 4> In configAll.h there is a constant called MAX_LOG_MSGS. But what will happen if I mention a number that is greater than MAX_LOG_MSGS in logInit api ? Thanks in advance Rashmi From vxwexplo-errs@csg.lbl.gov Fri May 4 04:48:03 2001 From: "Mike Anderson" Date: Fri May 4 04:48:05 PDT 2001 Subject: RE: Boot of vxworks VxWorks Greetings! > Submitted-by: "R R, Rajendra Prabhala (Rajendra)** CTR **" > > > > I have one question regarding the booting over network feature of vxWorks. > > Is it possible to boot a target board over ether net without > using DHCP and > > using only TFTP ? Yes. I wish to enter the network parameters like host IP > address, host name, target IP address, boot device and target name etc. > manually using tornado tools when the target comes up for the > first time. I > wish to specify TFTP and enter boot file location manually. I expect the > board later > to boot automatically using TFTP to get the boot file from host. Does this > work ? > Yes. > Is it mandatory that we have to use a combination like DHCP/BootP + > TFTP/FTP to enable the target board to boot over ether net OR can > I follow > the above method ? I could not find related stuff in the manual. > > No. Yes. What you do is to enter the boot parameters into NVRAM using a hyperterminal or similar RS232 app. But, you'll need to "or-in" 0x80 into the flags field. This tells the standard bootroms to use TFTP rather than FTP. Of course, you'll need to have a TFTP server set up with the proper image beforehand. HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." From vxwexplo-errs@csg.lbl.gov Fri May 4 05:04:58 2001 From: "Mike Anderson" Date: Fri May 4 05:05:01 PDT 2001 Subject: RE: ads860 bootrom_res VxWorks Greetings! [snip] > romInit_res.o(.text+0x37a): undefined reference to `RAM_DST_ADRS' > romInit_res.o(.text+0x37e): undefined reference to `RAM_DST_ADRS' > make.exe: *** [bootrom_res] Error 0x1 > > Done. > ---- > > Is this a known problem? Is there a patch for this I should've applied? > Add this to your config.h in the BSP: /* default uncompress dest. for rom resident images */ #ifndef RAM_DST_ADRS #define RAM_DST_ADRS RAM_HIGH_ADRS #endif HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." From vxwexplo-errs@csg.lbl.gov Fri May 4 08:57:46 2001 From: "Baron, Ken (N-BAE Systems)" Date: Fri May 4 08:57:48 PDT 2001 Subject: RE: logLib > Hi All, > > There is a facility in vxWorks called "message logging" which is provided > by > the library logLib. What I could understand is, this is used when an I/O > operation has to be done in ISR level, or at some point where we don't > want > to pend the task till the operation is over. So through logMsg we push the > message into a queue and logTask (which starts at the time of launching > the > vxSim) takes the data from the queue. > > My queries are > > 1> Is the logTask takes the data from the queue and prints it out on the > simulator screen? I am using vxSim. [Baron, Ken] tlogTask takes data from the Q and prints it on the console, by default. > 2> How the priority of the logTask is managed? Will it be dynamically > changed by the kernel so as to ensure that it will be always having lower > priority than the priority of the task which is logging the msg? I am > asking > this question as it has been written that logMsg api doesn't make the > current state waiting for the function to get executed. This means this > should not get scheduled and logtask gets CPU time, while a task logs the > msg. [Baron, Ken] If tLogTask is higher priority than the task that calls logMsg, the calling task will block until tLogTask is done. BUT WHAT IS EVEN WORSE is that if the messageQueue is full, the logMsg() call will block if called from a task. If called from interrupt, logMsg() will not block, and the message will be dropped if the Queue is full. ?? Does anyone know if there is a way to make logMsg() non blocking when called from a task? ?? > 3> I want to use my own logTask, instead of the OS deifned one. I want to > have some other functionality within that task. How can I do that? Is it > possible? > > 4> In configAll.h there is a constant called MAX_LOG_MSGS. But what will > happen if I mention a number that is greater than MAX_LOG_MSGS in logInit > api ? [Baron, Ken] MAX_LOG_MSGS is used in the logInit call to set the size of the messageQueue that logMsg() sends to. You can change MAX_LOG_MSGS or use a different number when calling logInit(). > Thanks in advance > Rashmi > From vxwexplo-errs@csg.lbl.gov Fri May 4 23:06:48 2001 From: "Arpan Pal" Date: Fri May 4 23:06:50 PDT 2001 Subject: queries on pjWorks3.1 and object file compression We are using pjWorks 3.1 alongwith WindML2.0. We have some queries - 1) What are the optimum configuration for the network buffers like NUM_1024, NUM_MBLKS etc. - do they remain the same as those suggested for pjWorks 3.0.2? 2) What should be the optimal red, green and yellow flag values for garbage collection - we are using min. heap of 6 MB and max. heap of 14 MB. What is the correct way of initiating garbage collection from java(System.gc) - is there any constraint on that? 3) We are using our applications as downloadable object files (.o). They are stored in the flash of the target. Is there any utility to compress these files while storing in the flash and decompressing them while loading to memory? We are using bootrom.sys - vxworks combination for booting the target. We are able to compress the bootrom.sys - is there any way to compress the vxworks image also? - arpan From vxwexplo-errs@csg.lbl.gov Mon May 7 21:26:05 2001 From: "deepak Kumar" Date: Mon May 7 21:26:07 PDT 2001 Subject: registering own software interrupts This is a multi-part message in MIME format. ------=_NextPart_000_00DF_01C0D7A5.E46F77E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Network Level : Tasks running at a priority equal to network protocols. > > I want to set a software interrupt. To schedule a software interrupt = in vxworks, we > have a routine namely "schednetisr()" in "h/netlib.h" > This method schedules a software interrupt to run at Network level. > I can use this routine to schedule the interrupt for IP layer. > This is done by "schednetisr(NETISR_IP)". The ISR called is = "ipintr()". > Till this everything is OK. > Everything OK means , are you able to "schednetisr(NETISR_IP)" and = getting "ipintr()" executed ? If yes then "ipintr()" runs in which context ? ISR = or Task ? Also please let me know how this "schednetisr" function schedules and = calls "ipintr" ? > Now I want to setup a new Interrupt & its ISR (software interrupt). > In OpenBSD, we have a routine called "register_netisr". > The prototype for the routine is > register_netisr(int type, (void *)isr) > Here type =3D interrupt viz, NETISR_IP or NETISR_ARP > isr =3D service routine to be called when interrupt occurs. > > There should be a corresponding routine in VxWorks. Can you please = tell > me what is this routine? I want to register my own software interrupt = & its > service routine. > ------=_NextPart_000_00DF_01C0D7A5.E46F77E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
Network Level : Tasks running at a priority = equal to=20 network protocols.
>
> I want to set a software interrupt. = To=20 schedule a software interrupt in vxworks, we
> have a routine = namely=20 "schednetisr()" in "h/netlib.h"
> This method schedules a software = interrupt to run at Network level.
> I can use this routine to = schedule=20 the interrupt for IP layer.
> This is done by = "schednetisr(NETISR_IP)".=20 The ISR called is "ipintr()".
> Till this everything is=20 OK.
>

Everything OK means , are you able to=20 "schednetisr(NETISR_IP)" and getting
"ipintr()" executed ? If yes = then=20 "ipintr()" runs in which context ? ISR or
Task ?

Also please = let me=20 know how this "schednetisr" function schedules and calls
"ipintr"=20 ?

> Now I want to setup a new Interrupt & its ISR = (software=20 interrupt).
> In OpenBSD, we have a routine called=20 "register_netisr".
> The prototype for the routine is
>=20 register_netisr(int type, (void *)isr)
> Here type =3D interrupt = viz,=20 NETISR_IP or NETISR_ARP
> isr =3D service routine to be called = when=20 interrupt occurs.
>
> There should be a corresponding = routine in=20 VxWorks. Can you please tell
> me what is this routine? I want to = register=20 my own software interrupt &
its
> service=20 routine.
>

------=_NextPart_000_00DF_01C0D7A5.E46F77E0-- From vxwexplo-errs@csg.lbl.gov Mon May 7 21:26:35 2001 From: "deepak Kumar" Date: Mon May 7 21:26:37 PDT 2001 Subject: Queries on mbuf (memory buffers) > Hi, > > I've some queries regarding mbuf (memory buffers) support in VxWorks. > > 1> How do we get an mbuf or mbuf chain to store a packet of 200 bytes? > 2> How do we get an mbuf with a cluster to store a packet of 1200 bytes? > > Can someone please provide example code? > > Hoping for an early response. > From vxwexplo-errs@csg.lbl.gov Tue May 1 14:07:01 2001 From: "Mike Anderson" Date: Mon May 7 21:54:15 PDT 2001 Subject: RE: VxWorks Greetings! > Submitted-by: "Mamta Choudhary" > > Hi, > > We are using Tornado 2.0 evaluation version. In this we are facing some > problems in use of files: > When we try to open a pre-existing file or create a file with O_CREAT > and O_RDWR option it returns a valid file descriptor value. But when we > try to read or write from/to this file it gives error which are like > S_iosLib_INVALID_FILE_DESCRIPTOR, or > S_iosLib_DUPLICATE_DEVICE_NAME. > > Sometimes it successfully creates/opens a file and allows us to perform > read/write to the corresponding file. The whole behaviour of files in > VxSim seems very unpredictable to us. > Could u please enlighten us about file handling in VxSim. > In VxSim, you will have to open your file a little differently as VxSim uses the Passthrough filesystem. This means that you have to make sure that your target server has the target server file system (TSFS) turned on and R/W access is enabled. Next, to create a file, you'll need to specify the /tgtsvr device like this: -> fd = creat("/tgtsvr/mydir/myfile", 2) ; O_RDWR access Then you can use "normal" read/write/close etc. Here is an example from my system: -> fd2 = creat("/tgtsvr/u/pcteam0/projects/tester", 2) new symbol "fd2" added to symbol table. fd2 = 0x4a4ef5c: value = 21 = 0x15 -> write(fd2, buf, 20) value = 20 = 0x14 -> close(fd2) value = 0 = 0x0 Are we enlightened? HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." From vxwexplo-errs@csg.lbl.gov Mon May 7 21:54:13 2001 Received: from postal1.lbl.gov (postal1.lbl.gov [128.3.7.82]) by csg.lbl.gov (8.9.3/8.9.3) with ESMTP id VAA05961 for ; Mon, 7 May 2001 21:54:12 -0700 (PDT) Received: from SpamWall.lbl.gov (localhost [127.0.0.1]) by postal1.lbl.gov (8.11.2/8.11.2) with ESMTP id f484sCV23248 for ; Mon, 7 May 2001 21:54:12 -0700 (PDT) Received: from dakiya.controlnet.co.in (IDENT:netscape@dakiya.controlnet.co.in.116.54.202.IN-ADDR.ARPA [202.54.116.69] (may be forged)) by SpamWall.lbl.gov (8.11.2/8.11.2) with ESMTP id f484rtL23216 for ; Mon, 7 May 2001 21:54:06 -0700 (PDT) Received: from raghunath ([202.54.116.65]) by dakiya.controlnet.co.in (Netscape Messaging Server 4.15) with ESMTP id GD033T00.6BU for ; Tue, 8 May 2001 10:27:29 +0530 From: "Raghunath Adhyapak" To: "VxWorksExploder" Subject: Queries on mbuf (memory buffers) Date: Tue, 8 May 2001 10:27:18 +0530 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Hi, I've some queries regarding mbuf (memory buffers) support in VxWorks. 1> How do we get an mbuf or mbuf chain to store a packet of 200 bytes? 2> How do we get an mbuf with a cluster to store a packet of 1200 bytes? Can someone please provide example code? Hoping for an early response. Regards, Raghunath R. A. ControlNet (India) Pvt. Ltd. Plot L-44, Unit I, STP, Verna Indl. Estate, Verna-Salcete 403722 Goa India (O) 91-832-783615 ext 505 (R) 91-832-423024 From vxwexplo-errs@csg.lbl.gov Tue May 8 03:23:09 2001 From: "David Anderson" Date: Tue May 8 03:23:12 PDT 2001 Subject: ipFilter in vxWorks Hello fellow vxWorkers, Does anyone have a vxWorks port of the 'standard' ipfilter available to share or know of the existance of one available from the Internet ( before I embark on porting it myself ). David Anderson. NEW E-MAIL ADDRESS: mailto:david.anderson@dtrack.com ------------------------------------- FF: 2B + ~2B , that is the question ? ------------------------------------- Disclaimer ---------- This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please destroy and notify Data Track Technology Plc +44 1425 271900. ------------------------------------------------------- From vxwexplo-errs@csg.lbl.gov Tue May 8 08:28:05 2001 From: "Janardhanan" Date: Tue May 8 08:28:07 PDT 2001 Subject: ksleep() blocking the other parts of netTask This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C0D801.A6A6F3A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello friends, I've attached the openBSD's TCP/IP stack to VxWorks with some = modifications to mbuf portion and other things(Using mux with END = driver).when I'm using sockets, if I use connect(), accept() or = shutdown() on TCP sockets, some page fault exception is thrown or some = times the system tries to restart and shows 'DosFsDevInit failed. = usrDevInit failed' error messages. When I debugged, I found that the problem was that, socket code in = VxWorks uses a function ksleep() to wait on connection-oriented TCP/IP = sockets.When we send a connection request to another machine (SYN TCP = packet) and waits for either a SYN acknowledge or RST, ksleep() is = called as follows. ksleep(so->so_timeoSem) where so is the socket and so_timeoSem is a wait channel on = which the socket waits. The problems are: 1.when ksleep is running other functions like tcp_slowtimo() or = tcp_fasttimo() or even arpintr() or ipintr() are not able to run. 2.Why the system crashes when ksleep() is executed again and again? I hope you can help me in these problems. Thanking you, Janardhanan.R. ------=_NextPart_000_0012_01C0D801.A6A6F3A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello friends,
 I've attached the openBSD's = TCP/IP stack to=20 VxWorks with some modifications to mbuf portion and other = things(Using mux=20 with END driver).when I'm using sockets, if I use connect(), accept() or = shutdown() on TCP sockets, some page fault exception is thrown or some = times the=20 system tries to restart and shows 'DosFsDevInit failed. usrDevInit = failed' error=20 messages.
    When I debugged, I = found that=20 the problem was that, socket code in VxWorks uses a function ksleep() to = wait on=20 connection-oriented TCP/IP sockets.When we send a connection request to = another=20 machine (SYN TCP packet) and waits for either a SYN acknowledge or RST, = ksleep()=20 is called as follows.
     =    =20 ksleep(so->so_timeoSem)
        = where so is=20 the socket and so_timeoSem is a wait channel on which the socket=20 waits.
 
     The problems=20 are:
    1.when ksleep is = running other=20 functions like tcp_slowtimo() or tcp_fasttimo() or even arpintr() or = ipintr()=20 are not able to run.
    2.Why the system = crashes when=20 ksleep() is executed again and again?
   I hope you can help me in = these=20 problems.
 Thanking you,
 Janardhanan.R.
 
 
------=_NextPart_000_0012_01C0D801.A6A6F3A0-- From vxwexplo-errs@csg.lbl.gov Tue May 8 20:36:42 2001 From: "Mike Anderson" Date: Tue May 8 20:36:45 PDT 2001 Subject: RE: Queries on mbuf (memory buffers) This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C0D818.1E41B010 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit VxWorks Greetings! > Submitted-by: "deepak Kumar" > > > Hi, > > > > I've some queries regarding mbuf (memory buffers) support in VxWorks. > > > > 1> How do we get an mbuf or mbuf chain to store a packet of 200 bytes? > > 2> How do we get an mbuf with a cluster to store a packet of 1200 bytes? > > > > Can someone please provide example code? > > The mbuf interface has been depricated in VxWorks (it's the older BSD 4.3 interface). Do you really want mbufs or do you want the END or NPT interface code (mblk/cluster block)? If you have a copy of T2, you already have sample source for both BSD 4.3 and END example drivers. It's in the /target/src/driver/netif directory. The use of the END/NPT driver approach with require the use of the netbuf libraries. This is documented in the NPT developer's guide available from the WindSurf site. HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions and Training Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." ------=_NextPart_000_0006_01C0D818.1E41B010 Content-Type: text/x-vcard; name="Mike Anderson.vcf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Mike Anderson.vcf" BEGIN:VCARD VERSION:2.1 N:Anderson;Mike FN:Mike Anderson ORG:The PTR Group, Inc. TITLE:Chief Scientist TEL;WORK;VOICE:(703) 585-9384 TEL;WORK;FAX:(703) 430-3748 ADR;WORK:;;1438 Cellar Creek Way;Herndon;VA;20170;USA LABEL;WORK;ENCODING=3DQUOTED-PRINTABLE:1438 Cellar Creek = Way=3D0D=3D0AHerndon, VA 20170=3D0D=3D0AUSA URL: URL:http://www.theptrgroup.com EMAIL;PREF;INTERNET:mike@theptrgroup.com REV:20001211T173220Z END:VCARD ------=_NextPart_000_0006_01C0D818.1E41B010-- From vxwexplo-errs@csg.lbl.gov Tue May 8 21:10:40 2001 From: Sunny Kunnumpuram Date: Tue May 8 21:10:42 PDT 2001 Subject: Enabling Second serial Port of MBX860-It's done ,Here is the Details VxWorks greetings to all All, For those who are working with the target shell not the tornado shell .Enabling the second serial port (which at present not supported by Windriver's BSP. ) means a lot .as you can reserve the COM! of MBX860 for console and COM2 to test the Serial port related programes. Following modifications we have done in BSP's inorder to achieve this. In MBX800.h: 1. Define NUM_TTY to the number of serial channels, in this case 2. 2. Define N_I8250_CHANNELS to the number of channels to be used on the Winbond chip, in this case 2 (again). 3. Add the following lines to the ISA UART definitions #define COM2_INT_VEC IV_COMM2 #define COM2_BASE_ADRS CPU_ISA_COM2_BA In sysSerial.c: 1. Add the extra port definition to devParas: static I8250_CHAN_PARAS devParas[] = { {COM1_INT_VEC, COM1_BASE_ADRS, UART_REG_ADDR_INTERVAL}, {COM2_INT_VEC, COM2_BASE_ADRS, UART_REG_ADDR_INTERVAL}, }; Note: I8250_CHAN_PARAS is a structure of following format typedef struct { USHORT vector; /* Interrupt vector */ ULONG baseAdrs; /* Register base address */ USHORT regSpace; /* Address Interval */ } I8250_CHAN_PARAS; and the devpars is array of structure ,In modification we are adding the ISA Interrupt vector for COM2 of superio ,and base addresses for COM2 devices as seen from CPU space. 2. In function sysSerialChanGet only channel 0 is defined. After line 283 (so within the #if (SERIAL_PORT == SERIAL_PORT_COM)) the line "case 1:" should be added to enable the use of the second serial port. #define SMC2_COM2_NUM 2 1 and case SMC2_COM2_NUM: #if (SERIAL_PORT == SERIAL_PORT_SMC) return ((SIO_CHAN *) &ppc860Chan); #endif #if (SERIAL_PORT == SERIAL_PORT_COM) return ((SIO_CHAN *) &i8250Chan[channel]); #endif In usrconfig.c: 1 / After completing these changes, do the compilation for VxWorks image. Do not include INCLUDE_WDB in BSP configuration. Now we can get “/tyCo/1” is “devs” command list. It means that the serial port2 is enabled. Regards Sunny K sunny.k@ltitl.chennaimail.com --- Vxworks Exploder wrote: > Subject: registering own software interrupts > Subject: Queries on mbuf (memory buffers) > Subject: RE: > Subject: Queries on mbuf (memory buffers) > Subject: ipFilter in vxWorks > > ********** > > From vxwexplo-errs@csg.lbl.gov Mon May 7 21:26:05 > 2001 > From: "deepak Kumar" > Date: Mon May 7 21:26:07 PDT 2001 > Subject: registering own software interrupts > > This is a multi-part message in MIME format. > > ------=_NextPart_000_00DF_01C0D7A5.E46F77E0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > > Network Level : Tasks running at a priority equal to > network protocols. > > > > I want to set a software interrupt. To schedule a > software interrupt = > in vxworks, we > > have a routine namely "schednetisr()" in > "h/netlib.h" > > This method schedules a software interrupt to run > at Network level. > > I can use this routine to schedule the interrupt > for IP layer. > > This is done by "schednetisr(NETISR_IP)". The ISR > called is = > "ipintr()". > > Till this everything is OK. > > > > Everything OK means , are you able to > "schednetisr(NETISR_IP)" and = > getting > "ipintr()" executed ? If yes then "ipintr()" runs in > which context ? ISR = > or > Task ? > > Also please let me know how this "schednetisr" > function schedules and = > calls > "ipintr" ? > > > Now I want to setup a new Interrupt & its ISR > (software interrupt). > > In OpenBSD, we have a routine called > "register_netisr". > > The prototype for the routine is > > register_netisr(int type, (void *)isr) > > Here type =3D interrupt viz, NETISR_IP or > NETISR_ARP > > isr =3D service routine to be called when > interrupt occurs. > > > > There should be a corresponding routine in > VxWorks. Can you please = > tell > > me what is this routine? I want to register my own > software interrupt = > & > its > > service routine. > > > > > ------=_NextPart_000_00DF_01C0D7A5.E46F77E0 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > Transitional//EN"> > > content=3D"text/html; = > charset=3Diso-8859-1"> > name=3DGENERATOR> > > > >
size=3D2> 
>
>
size=3D2> Roman"=20 > color=3D#000000 size=3D3>Network Level : Tasks > running at a priority = > equal to=20 > network protocols.
>
> I want to set a > software interrupt. = > To=20 > schedule a software interrupt in vxworks, we
> > have a routine = > namely=20 > "schednetisr()" in "h/netlib.h"
> This method > schedules a software = > > interrupt to run at Network level.
> I can use > this routine to = > schedule=20 > the interrupt for IP layer.
> This is done by > = > "schednetisr(NETISR_IP)".=20 > The ISR called is "ipintr()".
> Till this > everything is=20 > OK.
>

Everything OK means , are you > able to=20 > "schednetisr(NETISR_IP)" and getting
"ipintr()" > executed ? If yes = > then=20 > "ipintr()" runs in which context ? ISR or
Task > ?

Also please = > let me=20 > know how this "schednetisr" function schedules and > calls
"ipintr"=20 > ?

> Now I want to setup a new Interrupt > & its ISR = > (software=20 > interrupt).
> In OpenBSD, we have a routine > called=20 > "register_netisr".
> The prototype for the > routine is
>=20 > register_netisr(int type, (void *)isr)
> Here > type =3D interrupt = > viz,=20 > NETISR_IP or NETISR_ARP
> isr =3D service > routine to be called = > when=20 > interrupt occurs.
>
> There should be a > corresponding = > routine in=20 > VxWorks. Can you please tell
> me what is this > routine? I want to = > register=20 > my own software interrupt &
its
> > service=20 > routine.
>

> > ------=_NextPart_000_00DF_01C0D7A5.E46F77E0-- > > > > From vxwexplo-errs@csg.lbl.gov Mon May 7 21:26:35 > 2001 > From: "deepak Kumar" > Date: Mon May 7 21:26:37 PDT 2001 > Subject: Queries on mbuf (memory buffers) > > > Hi, > > > > I've some queries regarding mbuf (memory buffers) > support in VxWorks. > > > > 1> How do we get an mbuf or mbuf chain to store a > packet of 200 bytes? > > 2> How do we get an mbuf with a cluster to store a > packet of 1200 bytes? > > > > Can someone please provide example code? > > > > Hoping for an early response. > > > > > > > From vxwexplo-errs@csg.lbl.gov Tue May 1 14:07:01 > 2001 > From: "Mike Anderson" > Date: Mon May 7 21:54:15 PDT 2001 > Subject: RE: > > VxWorks Greetings! > > > Submitted-by: "Mamta Choudhary" > > > > > Hi, > > > > We are using Tornado 2.0 evaluation version. In > this we are facing some > > problems in use of files: > > When we try to open a pre-existing file or create > a file with O_CREAT > > and O_RDWR option it returns a valid file > descriptor value. But when we > > try to read or write from/to this file it gives > error which are like > > S_iosLib_INVALID_FILE_DESCRIPTOR, or > === message truncated === __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From vxwexplo-errs@csg.lbl.gov Tue May 8 21:11:25 2001 From: Sunny Kunnumpuram Date: Tue May 8 21:11:27 PDT 2001 Subject: Enabling Second serial Port of MBX860-It's done ,Here is the Details VxWorks greetings to all All, For those who are working with the target shell not the tornado shell .Enabling the second serial port (which at present not supported by Windriver's BSP. ) means a lot .as you can reserve the COM! of MBX860 for console and COM2 to test the Serial port related programes. Following modifications we have done in BSP's inorder to achieve this. In MBX800.h: 1. Define NUM_TTY to the number of serial channels, in this case 2. 2. Define N_I8250_CHANNELS to the number of channels to be used on the Winbond chip, in this case 2 (again). 3. Add the following lines to the ISA UART definitions #define COM2_INT_VEC IV_COMM2 #define COM2_BASE_ADRS CPU_ISA_COM2_BA In sysSerial.c: 1. Add the extra port definition to devParas: static I8250_CHAN_PARAS devParas[] = { {COM1_INT_VEC, COM1_BASE_ADRS, UART_REG_ADDR_INTERVAL}, {COM2_INT_VEC, COM2_BASE_ADRS, UART_REG_ADDR_INTERVAL}, }; Note: I8250_CHAN_PARAS is a structure of following format typedef struct { USHORT vector; /* Interrupt vector */ ULONG baseAdrs; /* Register base address */ USHORT regSpace; /* Address Interval */ } I8250_CHAN_PARAS; and the devpars is array of structure ,In modification we are adding the ISA Interrupt vector for COM2 of superio ,and base addresses for COM2 devices as seen from CPU space. 2. In function sysSerialChanGet only channel 0 is defined. After line 283 (so within the #if (SERIAL_PORT == SERIAL_PORT_COM)) the line "case 1:" should be added to enable the use of the second serial port. #define SMC2_COM2_NUM 2 1 and case SMC2_COM2_NUM: #if (SERIAL_PORT == SERIAL_PORT_SMC) return ((SIO_CHAN *) &ppc860Chan); #endif #if (SERIAL_PORT == SERIAL_PORT_COM) return ((SIO_CHAN *) &i8250Chan[channel]); #endif In usrconfig.c: 1 / After completing these changes, do the compilation for VxWorks image. Do not include INCLUDE_WDB in BSP configuration. Now we can get “/tyCo/1” is “devs” command list. It means that the serial port2 is enabled. Regards Sunny K sunny.k@ltitl.chennaimail.com __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From vxwexplo-errs@csg.lbl.gov Wed May 9 01:24:52 2001 From: "Mamta Choudhary" Date: Wed May 9 01:24:55 PDT 2001 Subject: Query Related to time routines Hi, Thank you for your reply. Is there any way by which i can get current time of system clock in vxworks. I tried to use AsciTime library functions "time" and "ctime" but it always return 00:00:00, Jan. 1 1970. When i tried to use clockLib library I always get a runtime error "general protection fault". And value of errno is S_iosLib_DEVICE_NOT_FOUND please help. From vxwexplo-errs@csg.lbl.gov Wed May 9 05:14:56 2001 From: Diego Novellon Date: Wed May 9 05:14:58 PDT 2001 Subject: RE: Query Related to time routines > -----Mensaje original----- > De: Vxworks Exploder [SMTP:vx_explo@csg.lbl.gov] > Enviado el: miércoles 9 de mayo de 2001 13:18 > Para: vxworks_users@csg.lbl.gov > Asunto: Vx Exploder Digest > > From vxwexplo-errs@csg.lbl.gov Wed May 9 01:24:52 2001 > From: "Mamta Choudhary" > Date: Wed May 9 01:24:55 PDT 2001 > Subject: Query Related to time routines > > > Hi, > Thank you for your reply. > Is there any way by which i can get current time of system clock in > vxworks. I tried to use AsciTime library functions "time" and "ctime" > > but it always return 00:00:00, Jan. 1 1970. > When i tried to use clockLib library I always get a runtime > error "general protection fault". And value of errno is > S_iosLib_DEVICE_NOT_FOUND > > please help. > Hi, M. Choudhary. This may not be applicable to you, as it depends on the BSP. I use Tornado II and a standard Pentium PC as target. Last year I asked my local rep and was told there's no function in Pentium BSP to access the RTC, so I rolled my own. I read the clock once during application initialization, do a clock_settime(), and from then on I can use time() or clock_gettime() to get the real time and date. Here's my function: ... time_t RTCToTime(void) { struct tm ahora; unsigned char cHour, cMin, cSec; unsigned char cDay, cMonth, cYear; sysOutByte(0x70,0/*segundo*/); cSec = sysInByte(0x71); ahora.tm_sec = (cSec&0x0F) + 10*((cSec&0xF0)>>4); sysOutByte(0x70,2/*minuto*/); cMin = sysInByte(0x71); ahora.tm_min = (cMin&0x0F) + 10*((cMin&0xF0)>>4); sysOutByte(0x70,4/*hora*/); cHour = sysInByte(0x71); ahora.tm_hour = (cHour&0x0F) + 10*((cHour&0xF0)>>4); sysOutByte(0x70,7/*dia*/); cDay = sysInByte(0x71); ahora.tm_mday = (cDay&0x0F) + 10*((cDay&0xF0)>>4); sysOutByte(0x70,8/*mes*/); cMonth = sysInByte(0x71); ahora.tm_mon = (cMonth&0x0F) + 10*((cMonth&0xF0)>>4) - 1; sysOutByte(0x70,9/*anho*/); cYear = sysInByte(0x71); ahora.tm_year = 100 + (cYear&0x0F) + 10*((cYear&0xF0)>>4); return mktime(&ahora); } ... struct timespec ts; ... ts.tv_sec = RTCToTime(); ts.tv_nsec = 0; res = clock_settime(CLOCK_REALTIME, &ts); ... Hope this works for you too. Regards, Diego ///////////////////////////////////////////////// // Diego Novellón Latre, Computer Engineer // // TETRA SwMI, R&D Dept., Teltronic S.A.U. // // Polígono Malpica, C/ F-Oeste // // E50057 Zaragoza - Spain // // Tel +34.976.465656 #174, fax +34.976.465722 // // http://www.teltronic.es/ // ///////////////////////////////////////////////// Bail O Dhia ar an bair From vxwexplo-errs@csg.lbl.gov Wed May 9 08:11:11 2001 From: "Mike Anderson" Date: Wed May 9 08:11:13 PDT 2001 Subject: RE: Query Related to time routines This is a multi-part message in MIME format. ------=_NextPart_000_0012_01C0D879.23073050 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit VxWorks Greetings! > Submitted-by: "Mamta Choudhary" > > > Hi, > Thank you for your reply. > Is there any way by which i can get current time of system clock in > vxworks. I tried to use AsciTime library functions "time" and "ctime" > but it always return 00:00:00, Jan. 1 1970. > When i tried to use clockLib library I always get a runtime > error "general protection fault". And value of errno is > S_iosLib_DEVICE_NOT_FOUND > > please help. The problem is that Wind River can make no assumptions about the presence or lack thereof of a hardware date/time circuit on your board. Therefore, it's up to the BSP developer to know if your board has such a circuit and write routines to handle setting the ANSI time functions using the clock_settime call. This says that you access your clock according to the requirements of your hardware, and then encode the number of seconds since 1/1/1970 and call the clock_settime function. If you're using DosFS2, your date/time stamps on the files will also be driving from this interface. If you need the time, then call clock_gettime and pass the result to the appropriate ansiTime function to decode the timeval return into date and time. HTH, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions and Training Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." ------=_NextPart_000_0012_01C0D879.23073050 Content-Type: text/x-vcard; name="Mike Anderson.vcf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Mike Anderson.vcf" BEGIN:VCARD VERSION:2.1 N:Anderson;Mike FN:Mike Anderson ORG:The PTR Group, Inc. TITLE:Chief Scientist TEL;WORK;VOICE:(703) 585-9384 TEL;WORK;FAX:(703) 430-3748 ADR;WORK:;;1438 Cellar Creek Way;Herndon;VA;20170;USA LABEL;WORK;ENCODING=3DQUOTED-PRINTABLE:1438 Cellar Creek = Way=3D0D=3D0AHerndon, VA 20170=3D0D=3D0AUSA URL: URL:http://www.theptrgroup.com EMAIL;PREF;INTERNET:mike@theptrgroup.com REV:20001211T173220Z END:VCARD ------=_NextPart_000_0012_01C0D879.23073050-- From vxwexplo-errs@csg.lbl.gov Wed May 9 15:06:39 2001 From: Rainer Stelzer Date: Wed May 9 15:06:41 PDT 2001 Subject: RE: build bootrom bigger than 1M for powerpc Hi Bo Yu, > We are building a bootrom uncompressed object. But usually the bootrom > > for PowerPC is limited to 1M. We certainly will have a bootrom larger > than > 1M. What is the guildline for creating the bootrom > 1 M ? We solved the problem on a MPC823 board populated with 4MB Flash by adding a jump to at the location . This works, cause the adress lines A11 and A10 are high when accessing the 1MB boot area after reset. By doing it this way, you can use 3MB continues ROMSpace. However, this is a workaround, maybe Motorola increases the boot memory window to a bigger size, or leave all adresslines above 1MB in low state in the next silicon version. regards rainer tornado vxworks ===================================================== Gebrüder Stoye GmbH department: traffic control systems Name: Rainer Stelzer Adr: Longericher Strasse 177 city: Cologne, Germany Zip: 50739 phone: ++49/221/2616-551 mailto: r.stelzer@stoye.de www: http://www.stoye.de ===================================================== -- ===================================================== Gebrüder Stoye GmbH department: traffic control systems Name: Rainer Stelzer Adr: Longericher Strasse 177 city: Cologne, Germany Zip: 50739 phone: ++49/221/2616-551 mailto: r.stelzer@stoye.de www: http://www.stoye.de ===================================================== From vxwexplo-errs@csg.lbl.gov Thu May 10 11:14:57 2001 From: Kumaraswamy Mudide Date: Thu May 10 11:14:59 PDT 2001 Subject: Reg. DHCP Hi All, We have a vxWorks target configured as DHCP client and Linux machine as DHCP server. With this set up Linux machine sends required parameter like Next boot server address, boot file name in DHCPOFFER message and hence vxWorks target works fine. But when I use Windows NT based PC as DHCP server it sends "Next boot server address" as "0.0.0.0" and I also observed that Windows NT machine does not sends boot file name. Is any one encounter it with Windows NT server before? Do you think the Windows NT server configuration is wrong? Please help us. Bye swamy __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From vxwexplo-errs@csg.lbl.gov Fri May 11 07:40:16 2001 From: "deepak Kumar" Date: Fri May 11 07:40:18 PDT 2001 Subject: software interrupt This is a multi-part message in MIME format. ------=_NextPart_000_031E_01C0DA57.645C14A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I want to set a software interrupt. To schedule a software interrupt, we > have a routine namely "schednetisr()" in "h/netlib.h" > This method schedules a software interrupt to run at Network level. > I can use this routine to schedule the interrupt for IP layer. e.g. This is done by "schednetisr(NETISR_IP)". The ISR called is = "ipintr()". This is done by "schednetisr(NETISR_IP)". The ISR called is "ipintr()". > Now I want to setup a new Interrupt & its ISR (software interrupt). > In OpenBSD, we have a routine called "register_netisr". > The prototype for the routine is > register_netisr(int type, (void *)isr) > Here type =3D interrupt viz, NETISR_IP or NETISR_ARP > isr =3D service routine to be called when interrupt occurs. > > There should be a corresponding routine in VxWorks. Can you please = tell > me what is this routine? I want to register my own software interrupt = & its > service routine. ------=_NextPart_000_031E_01C0DA57.645C14A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I want to set a software interrupt. To schedule = a software=20 interrupt, we
> have a routine namely "schednetisr()" in=20 "h/netlib.h"
> This method schedules a software interrupt to run = at=20 Network level.
> I can use this routine to schedule the interrupt = for IP=20 layer.
e.g. This is done by = "schednetisr(NETISR_IP)". The ISR=20 called is "ipintr()".
This is done by "schednetisr(NETISR_IP)". The = ISR called is=20 "ipintr()".
> Now I want to setup a new Interrupt & = its ISR=20 (software interrupt).
> In OpenBSD, we have a routine called=20 "register_netisr".
> The prototype for the routine is
>=20 register_netisr(int type, (void *)isr)
> Here type =3D interrupt = viz,=20 NETISR_IP or NETISR_ARP
> isr =3D service routine to be called = when=20 interrupt occurs.
>
> There should be a corresponding = routine in=20 VxWorks. Can you please tell
> me what is this routine? I want to = register=20 my own software interrupt &
its
> service=20 routine.
------=_NextPart_000_031E_01C0DA57.645C14A0-- From vxwexplo-errs@csg.lbl.gov Fri May 11 08:58:54 2001 From: "Prakash Padmanabhan" Date: Fri May 11 08:58:56 PDT 2001 Subject: Disappearing task list in VxWorks This is a multi-part message in MIME format. --------------InterScan_NT_MIME_Boundary Content-Type: multipart/alternative; boundary="----=_NextPart_000_0071_01C0DA61.E5A14C10" ------=_NextPart_000_0071_01C0DA61.E5A14C10 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I'm using a Tornado 1.0.1 shell with VxWorks running on an MPC860 = processor board. Immediately after I load my=20 application, the task list would stop being visible from the shell ("i" = returns an empty list). If I unload the application, the tasks (wdb, log etc.) become visible again. The application also crashes = immediately after it's started. Does anyone have some hint about what could be causing this problem? (Could this be = because of lack of memory?) Thanks in advance. -Prakash ------=_NextPart_000_0071_01C0DA61.E5A14C10 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
 
I'm using a Tornado 1.0.1 shell with VxWorks running on an = MPC860=20 processor board. Immediately after I load my
application, the task list would stop being visible from the = shell=20 ("i" returns an empty list). If I unload the application, the
tasks (wdb, log etc.) become visible again. The application = also=20 crashes immediately after it's started. Does anyone
have some hint about what could be causing this problem? (Could = this be=20 because of lack of memory?)
 
Thanks in advance.
-Prakash
------=_NextPart_000_0071_01C0DA61.E5A14C10-- --------------InterScan_NT_MIME_Boundary-- From vxwexplo-errs@csg.lbl.gov Sun May 13 05:04:30 2001 From: "Prakash Padmanabhan" Date: Sun May 13 05:04:32 PDT 2001 Subject: Re: Disappearing task list in VxWorks Could debug the problem. It was because libPPC860gnuvx.a was loaded twice, once in the VxWorks image and a second time as part of the object file. Thanks. -Prakash ----- Original Message ----- From: "the vxWorks Users Group Exploder" To: Sent: Friday, May 11, 2001 9:42 PM Subject: Disappearing task list in VxWorks > Hello, > > I'm using a Tornado 1.0.1 shell with VxWorks running on an MPC860 = > processor board. Immediately after I load my=20 > application, the task list would stop being visible from the shell ("i" = > returns an empty list). If I unload the application, the > tasks (wdb, log etc.) become visible again. The application also crashes = > immediately after it's started. Does anyone > have some hint about what could be causing this problem? (Could this be = > because of lack of memory?) > > Thanks in advance. > -Prakash > From vxwexplo-errs@csg.lbl.gov Mon May 14 06:12:30 2001 From: "Mamta Choudhary" Date: Mon May 14 06:12:33 PDT 2001 Subject: How to make Bootable Image? Hello All!!!! i'm using evaluation version of tornado.....We are trying to make a bootable application for windos NT....It works fine for one project but I have developed an application which uses 5 projects...so kindly suggest me how to make bootable application for that Thanks in advance, Regards, M. choudhary From vxwexplo-errs@csg.lbl.gov Mon May 14 08:35:45 2001 From: "T. Hariharan" Date: Mon May 14 08:35:47 PDT 2001 Subject: Weird dosFs problem? Hello, We ran into this weird dosFs problem. Checking if others had a similar experience. We have the following directories: /ata/cfg - for config files /ata/log - for log files Created many config files - startup.cfg, test.cfg, etc - under /ata/cfg. When startup.cfg is created, we keep backup copies of the previous 3 versions as startup1.cfg, startup2.cfg, startup3.cfg (rename files). Similarly, we rotate the log files in the directory /ata/log once a day, keeping the last N days' files. I displayed the content of one of the log files and found that it had what should have been in a config file! I'm checking our code for bugs, but one of the suspects is dosFs. Has anyone had problems where dosFs puts the content that's supposed to be in one file in another? We use Tornado 2.0.2, so I would expect it to have the latest version of dosFs. I've heard that the previous version was very bad. Thanks, Hari From vxwexplo-errs@csg.lbl.gov Mon May 14 09:35:49 2001 From: currie@ghg.net Date: Mon May 14 09:35:52 PDT 2001 Subject: Tornado FTP failures We have several applications that are trying to download data written to a Targa SCSI device hooked up to a Radstone PPC 604 board. We are having repeatable transfer failures every 7th data file. We are using a Labview application, WAR_FTP, and another ftp application that we have written. Has anyone else had this problem, and do you have any suggestions on how to fix it? Thanks. Alan Currie NASA Johnson Space Center Houston, TX From vxwexplo-errs@csg.lbl.gov Tue May 15 07:13:43 2001 From: David Laight Date: Tue May 15 07:13:45 PDT 2001 Subject: Re: Weird dosFs problem? Finding the 'wrong' data in a file is usually caused by an earlier corruption of the FAT - a block is marked free when it is allocated to a file. This causes the same block to be allocated to two files later on. We have seen quite a few corrupted dosfs filesystems - but never identified a sequence that actually corrupts the disk. I don't know the mechanism used by compact flash cards to support 512 byte sectors using (I assume) standard flash parts with 64k byte erase blocks. I have seem corrupt filesystems where it looked as though a sector was in the wrong place - which might be a firmware bug on the CF card, but is just as likely to be a hardware problem on our board. I have so far refrained from using dosfs2, partially because I'm building vxWorks 5.3.1 and 5.4 on the same source base, and partially because I don't think it will interact very well with the cache I use to get reasonable performance from flash. David > > We ran into this weird dosFs problem. Checking if others had a similar > experience. > > We have the following directories: > > /ata/cfg - for config files > /ata/log - for log files > > Created many config files - startup.cfg, test.cfg, etc - under /ata/cfg. > When startup.cfg is created, we keep backup copies of the previous 3 > versions as startup1.cfg, startup2.cfg, startup3.cfg (rename files). > Similarly, we rotate the log files in the directory /ata/log once a day, > keeping the last N days' files. > > I displayed the content of one of the log files and found that it had what > should have been in a config file! I'm checking our code for bugs, but one > of the suspects is dosFs. Has anyone had problems where dosFs puts the > content that's supposed to be in one file in another? > > We use Tornado 2.0.2, so I would expect it to have the latest version of > dosFs. I've heard that the previous version was very bad. > > Thanks, > Hari ---------------------------------------------------------------- David Laight email: dsl@tadpole.co.uk Tadpole Technology plc phone: +44 1223 428 232 Cambridge, UK fax: +44 1223 428 201 From vxwexplo-errs@csg.lbl.gov Wed May 16 08:30:00 2001 From: "Baron, Ken" Date: Wed May 16 08:30:03 PDT 2001 Subject: windows explorer And Tornado conflict Hi All, I wonder if anyone else has seen this with Windows 95 and Tornado2. Before running Tornado, I can use Windows Explorer to copy a file. After I run Tornado I can no longer copy a file either by dragging or copy and paste. How do I fix this? From vxwexplo-errs@csg.lbl.gov Wed May 16 10:30:07 2001 From: "CICON,JAMES (HP-Vancouver,ex1)" Date: Wed May 16 10:30:09 PDT 2001 Subject: RE: windows explorer And Tornado conflict Greenhills sells a good product. Nucleus isn't bad. Jim Cicon > -----Original Message----- > From: vxwexplo@lbl.gov [mailto:vxwexplo@lbl.gov] > Sent: Wednesday, May 16, 2001 8:32 AM > To: vxworks_users@csg.lbl.gov > Subject: windows explorer And Tornado conflict > > > Submitted-by vxwexplo-errs@csg.lbl.gov Wed May 16 08:30:00 2001 > Submitted-by: "Baron, Ken" > > Hi All, > > I wonder if anyone else has seen this with Windows 95 and Tornado2. > > Before running Tornado, I can use Windows Explorer to copy a > file. After I > run Tornado I can no longer copy a file either by dragging or copy and > paste. > > How do I fix this? From vxwexplo-errs@csg.lbl.gov Wed May 16 19:42:20 2001 From: "Edwin Dela Cruz" Date: Wed May 16 19:42:22 PDT 2001 Subject: Please include me in VxWorks mailing list! May 17, 2001 Dear Sir, Please include me in your VxWorks mailing list. Thanks in advance, ******************************************* Edwin T. Dela Cruz Millennium Software, Inc. 25th Flr. Robinsons Equitable Bank Tower ADB Ave. cor. Poveda St., Ortigas Center, Pasig City 1605 Philippines E-mail: edelacruz@msi.net.ph ******************************************* From vxwexplo-errs@csg.lbl.gov Thu May 17 00:18:59 2001 From: Vikrant Mittal Date: Thu May 17 00:19:02 PDT 2001 Subject: Please include me in VxWorks mailing list! Dear Sir, Please include me in VxWorks mailing list! Thanks Vikrant Mittal From vxwexplo-errs@csg.lbl.gov Fri May 18 00:51:37 2001 From: chenxiang@DigitalChina.com.cn Date: Fri May 18 00:51:40 PDT 2001 Subject: help:WDB problem (WTX Error 0x10197 (EXCHANGE_TIMEOUT)) hi vxWorker This question has puzzled me two days.I have to post it here hope to get some hints. vxWorks 5.4 + Tornado2 + MPC860 , I config wdb in bsp. And I could launch target-server , it shows Wind River Systems Target Server: NT/Win95 version Connecting to target agent... succeeded. Attaching C++ interface... succeeded. Attaching elf OMF reader for PPC CPU family... succeeded. In win98 , i can launch winsh very well , but i could not launch debuger , it told me " a serial internel problem occurred " and tornado2 had to been shut. In win2k , i even could not launch winsh , it just told me "WTX Error 0x10197 (EXCHANGE_TIMEOUT)". Anyone met similar problem , any hints will be very appreciated. Chen Xiang From vxwexplo-errs@csg.lbl.gov Fri May 18 03:24:04 2001 From: "Vijayaraghavan Rajasekaran" Date: Fri May 18 03:24:06 PDT 2001 Subject: event implementaion in Vxworks Hello VXWORKS and TORANDO users, We are doing porting from pSOS to Vxworks. In pSOS we can send event to specified task Id through ev_send. similarly ev_receive is used to receive a event. ev_send( task Id, event flag) ev_receive (event mask, EV_ANY/EV_ALL , timeout, event) Is there any fesiblity to implement the 'event' (in pSOS) to VxWorks? Is there any POSIX std. for this? Pls Advice me reg this. Thanks Vijay From vxwexplo-errs@csg.lbl.gov Fri May 18 03:32:45 2001 From: "Vinoth Amarnath" Date: Fri May 18 03:32:48 PDT 2001 Subject: Influencing scheduler for preferential execution of tasks ... Hi everybody, Is there are a mechanism in vxworks by which among a given set of tasks of varying priorities the scheduler can be infuenced to always give execution to a particular task for a specific amount of time. In other words the rest of the tasks should be kept away from acquiring the CPU.( sort of putting them in a "frozen" state ) Conditions are (a) The priorities of these tasks should not be altered. (b) None of the tasks ought to be suspended. The requirement is that the chosen task is supposed to take a snap-shot of these other tasks as they are in a given instant of time without disturbing their present state. Kindly let me know your opinion. Thanks for sharing your time. with warm regards, Vinoth.A From vxwexplo-errs@csg.lbl.gov Fri May 18 06:25:35 2001 From: David Laight Date: Fri May 18 06:25:38 PDT 2001 Subject: Re: Influencing scheduler for preferential execution of tasks ... Why not just run the task taking the 'snapshot' information at a very high priority? David > Is there are a mechanism in vxworks by which among a given set of > tasks of varying priorities the scheduler can be infuenced to > always give execution to a particular task for a specific amount > of time. > > In other words the rest of the tasks should be kept away from > acquiring the CPU.( sort of putting them in a "frozen" state ) > > Conditions are > (a) The priorities of these tasks should not be altered. > (b) None of the tasks ought to be suspended. > > The requirement is that the chosen task is supposed to take > a snap-shot of these other tasks as they are in a given instant of > time without disturbing their present state. > ---------------------------------------------------------------- David Laight email: dsl@tadpole.co.uk Tadpole Technology plc phone: +44 1223 428 232 Cambridge, UK fax: +44 1223 428 201 From vxwexplo-errs@csg.lbl.gov Fri May 18 08:06:38 2001 From: Kumaraswamy Mudide Date: Fri May 18 08:06:41 PDT 2001 Subject: Re: Influencing scheduler for preferential execution of tasks ... Hi, When chosen task is running you can lock the scheduling till it takes snap-shot of other task. I do not know whether this will solve your problem. Regards, Swamy --- the vxWorks Users Group Exploder wrote: > Submitted-by vxwexplo-errs@csg.lbl.gov Fri May 18 > 03:32:45 2001 > Submitted-by: "Vinoth Amarnath" > > > Hi everybody, > > Is there are a mechanism in vxworks by which among > a given set of > tasks of varying priorities the scheduler can be > infuenced to > always give execution to a particular task for a > specific amount > of time. > > In other words the rest of the tasks should be > kept away from > acquiring the CPU.( sort of putting them in a > "frozen" state ) > > Conditions are > (a) The priorities of these tasks should not be > altered. > (b) None of the tasks ought to be suspended. > > The requirement is that the chosen task is supposed > to take > a snap-shot of these other tasks as they are in a > given instant of > time without disturbing their present state. > > Kindly let me know your opinion. > > Thanks for sharing your time. > > with warm regards, > Vinoth.A > > ********** > > This is a user group mailing list for vxWorks > related topics > see http://www-vxw.lbl.gov/vxworks for posting > and subscription info __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From vxwexplo-errs@csg.lbl.gov Fri May 18 08:50:55 2001 From: Kumaraswamy Mudide Date: Fri May 18 08:50:57 PDT 2001 Subject: Re: Influencing scheduler for preferential execution of tasks ... Hi, While chosen task is taking snap-shot of other tasks you can lock the scheduling, right!. Regards, swamy --- the vxWorks Users Group Exploder wrote: > Submitted-by vxwexplo-errs@csg.lbl.gov Fri May 18 > 03:32:45 2001 > Submitted-by: "Vinoth Amarnath" > > > Hi everybody, > > Is there are a mechanism in vxworks by which among > a given set of > tasks of varying priorities the scheduler can be > infuenced to > always give execution to a particular task for a > specific amount > of time. > > In other words the rest of the tasks should be > kept away from > acquiring the CPU.( sort of putting them in a > "frozen" state ) > > Conditions are > (a) The priorities of these tasks should not be > altered. > (b) None of the tasks ought to be suspended. > > The requirement is that the chosen task is supposed > to take > a snap-shot of these other tasks as they are in a > given instant of > time without disturbing their present state. > > Kindly let me know your opinion. > > Thanks for sharing your time. > > with warm regards, > Vinoth.A > > ********** > > This is a user group mailing list for vxWorks > related topics > see http://www-vxw.lbl.gov/vxworks for posting > and subscription info __________________________________________________ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/ From vxwexplo-errs@csg.lbl.gov Sat May 19 02:18:02 2001 From: "Vinoth Amarnath" Date: Sat May 19 02:18:05 PDT 2001 Subject: RE: Influencing scheduler for preferential execution of tasks ... Hi again, Thanks for sharing your time. Yes, taskLock( ) should be useful if the chosen task is guaranteed not to get blocked or pended. As an extension to my earlier query I have one more. This is about restarting all the tasks that were sort of frozen. Now if these tasks had started let us say a few timers each one at a different point in time and currently with different counter values is there a mechanism to freeze these timers as they are so that they can be restarted and the difference in their respective counters is preserved when they are brought back to life. Simply put is it possible to freeze the timers ( started using wdStart( ) ) as they are at once and re-start them at some other point. Kindly let me know your opinions. regards, Vinoth.A --- the vxWorks Users Group Exploder vxwexplo@lbl.gov> wrote: Submitted-by vxwexplo-errs@csg.lbl.gov Fri May 18 03:32:45 2001 Submitted-by: "Vinoth Amarnath" Hi everybody, Is there are a mechanism in vxworks by which among a given set of tasks of varying priorities the scheduler can be infuenced to always give execution to a particular task for a specific amount of time. In other words the rest of the tasks should be kept away from acquiring the CPU.( sort of putting them in a "frozen" state ) Conditions are (a) The priorities of these tasks should not be altered. (b) None of the tasks ought to be suspended. The requirement is that the chosen task is supposed to take a snap-shot of these other tasks as they are in a given instant of time without disturbing their present state. Kindly let me know your opinion. Thanks for sharing your time. with warm regards, Vinoth.A ********** This is a user group mailing list for vxWorks related topics see http://www-vxw.lbl.gov/vxworks for posting and subscription info From vxwexplo-errs@csg.lbl.gov Mon May 21 05:19:36 2001 From: "Praveen Nadgir" Date: Mon May 21 05:19:39 PDT 2001 Subject: Re: Influencing scheduler for preferential execution of tasks ---- vxWorks ---- Hi, I would suggest something else. Why not have an ISR running with the tick interrupt collect the status of all the tasks and dump it into some memory reserved. This has the advantages such as :- 1. It will run at the higest priority. 2. It will automatically freeze everything at the task level and also watchdog level. So timers will be frozen. 3. It doesn't affect any of the tasks status.(be it peneded/suspended...) But it will have the restrictions that are there on the general ISR and most importantly it might not give the information at the instant i.e. you will be looking at the data dumped a few ticks ago!!...That's the price you have to pay I guess!! Hope this helps, Praveen Nadgir. From vxwexplo-errs@csg.lbl.gov Mon May 21 15:17:36 2001 From: "Tan, Tat Kin" Date: Mon May 21 15:17:39 PDT 2001 Subject: VxNetStack Job/Kernel optimization --- vxworks --- Hi all vxworks champions, I wonder which area should i look into if i wanted to optimize the performance of my target board (which runs vxworks)? One area i can think of is to minimize/optimize the jobs running in kernel. How can i achieve this? Which area should i start and look into? Million thanks for any taker..... with warm regards, Tat Kin TAN From vxwexplo-errs@csg.lbl.gov Mon May 21 18:17:43 2001 From: "Mike Anderson" Date: Mon May 21 18:17:45 PDT 2001 Subject: RE: VxNetStack Job/Kernel optimization VxWorks Greetings! > Submitted-by: "Tan, Tat Kin" > > > I wonder which area should i look into if i wanted to optimize the > performance of my target board (which runs vxworks)? One area i > can think of > is to minimize/optimize the jobs running in kernel. How can i > achieve this? > Which area should i start and look into? > Well, it depends... What is the application? Is it CPU bound, network bound, I/O bound or something else? In general, I'd try to keep the number of tasks down as long as the task design makes sense from a cohesion/coupling prospective. You've also not told us what CPU architecture you're using. Quite simply, you've not given us enough information to be able to provide much guidance. But, here are some general things to ponder: 1) Latency is generally *bad* (although we can use it to our benefit on occasion) 2) -1 return status in VxWorks is *bad* (that's the ERROR return) 3) The answer to any question your management will ask you is: "Well, it depends..." -- most elements in embedded systems have dependences on other elements. It's a rare item that can be adjusted without impacting something else. Regards, Mike Anderson -- ======================================================= T h e P T R G r o u p, I n c. ======================================================= Embedded, Real-Time Solutions and Training Mike Anderson mailto:mike@ThePTRGroup.com Chief Scientist http://www.ThePTRGroup.com V: (703) 585-9384 F: (703) 430-3748 ======================================================= "Software development is like making a baby... You can't make a baby in one month by impregnating nine women. Some things just take time." From vxwexplo-errs@csg.lbl.gov Tue May 22 01:00:23 2001 From: "David Anderson" Date: Tue May 22 01:00:25 PDT 2001 Subject: RE: RE: Influencing scheduler for preferential execution of tasks vxworks Tornado WindView uses an auxilliary clock which is supported in ( most ? ) BSP's. This can be set to run faster than the timer tick so allowing faster sampling. Just an aside from the main issue... David A. From vxwexplo-errs@csg.lbl.gov Tue May 22 04:07:44 2001 From: Vxworks Exploder Date: Tue May 22 04:08:39 PDT 2001 Subject: comp.os.vxworks newsdigest Comp.Os.Vxworks Daily Digest Tue May 22 04:04:55 PDT 2001 Subject: tffs on PPMC750 Subject: using startup script Subject: Rebuild kernel for VxSIM? Subject: Re: Gcc 2.95.3 for VxWorks-PPC Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: using startup script Subject: Re: Interrupt:dc0 no carrier error Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: Gcc 2.95.3 for VxWorks-PPC Subject: Re: remote load and startup Subject: Flash memory questions Subject: VxWorks & PCI Subject: Re: Rebuild kernel for VxSIM? Subject: Re: System hangs for certain Image sizes Subject: Re: tffs on PPMC750 Subject: Re: SingleStep and the 860 trap exception Subject: vsnprintf and stricmp Subject: Re: symbol table Subject: Re: Flash memory questions Subject: Re: using startup script Subject: Re: Gcc 2.95.3 for VxWorks-PPC Subject: Re: remote load and startup Subject: Re: tffs on PPMC750 Subject: Re: vsnprintf and stricmp Subject: Re: SingleStep and the 860 trap exception Subject: Re: time() depends on sysClkRate? Subject: RE: Flash memory questions Subject: problem when loading vxWorks image Subject: large downloadable image Subject: Better Allocator than memLib?? Subject: taskDelay problem Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: using startup script Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: taskDelay problem Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: STDIN problem on target Subject: Re: (beginer) Problem "catching" a cPCI interrupt Subject: vxworks memory management Subject: Re: large downloadable image Subject: Re: remote load and startup Subject: DWDM Subject: Re: File I/O through Serial Link on RAD6000 Subject: Re: T2 man pages??? Subject: Re: Better Allocator than memLib?? Subject: Re: Interrupt:dc0 no carrier error Subject: Re: using startup script Subject: PPC 821/823 with passive LCD display Subject: Re: using startup script Subject: Re: taskDelay problem Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: problem when loading vxWorks image Subject: Re: large downloadable image Subject: Re: symbol table Subject: Re: problem when loading vxWorks image Subject: Debugging with MMU Enabled Subject: DNS source code Subject: Re: Debugging with MMU Enabled Subject: Re: Debugging with MMU Enabled Subject: Unix to Win platform Subject: VxWorks developers needed in Central NJ Subject: Re: Unix to Win platform Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: PPC 821/823 with passive LCD display Subject: problem on using objcopyppc Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: large downloadable image Subject: taskSuspend - What will be happened in long long time? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: large downloadable image Subject: Re: taskSuspend - What will be happened in long long time? Subject: VxWorks: Servo Control System Job Opportunity Subject: VxWorks(64 Bit Addition). Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Howto get documentation for hashLib,sllLib and dllLib ? Subject: Re: vxworks memory management Subject: Re: vxWorks image booting error Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: VxWorks & PCI Subject: OT: make for Win32? Subject: Re: Handling Interrupt - Subject: Re: T2 man pages??? Subject: Re: T2 man pages??? Subject: Re: T2 man pages??? Subject: Re: Debugging with MMU Enabled Subject: Note: 82559ER access to serial EEPROM Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: Debugging with MMU Enabled Subject: Re: make for Win32? Subject: Re: Unix to Win platform Subject: Newbie needs help with embedded SNMP agent Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: remote load and startup Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Debugging with MMU Enabled Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: VxWorks Subject: Re: VxWorks(64 Bit Addition). Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Bad Email Address Purging Subject: how to develop custom TELNET and FTP? Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: problem booting target Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: POSIX async I/O Subject: Re: how to develop custom TELNET and FTP? Subject: VxWorks hang up in mcp750 Subject: vxworks and xmodem protocol Subject: Re: T2 man pages??? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: adding new protocol family support to the vxWorks host network stack Subject: Re: vxworks and xmodem protocol Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: What's the meaning of CACHE_PIPE_FLUSH()? Subject: build agent Subject: Re: problem on using objcopyppc Subject: Re: how to develop custom TELNET and FTP? Subject: Async Read Failure Subject: Re: Async Read Failure Subject: Re: vxworks and xmodem protocol Subject: RE: comp.os.vxworks newsdigest Subject: Re: taskSuspend - What will be happened in long long time? Subject: request Subject: Re: request Subject: tffs on PPMC750 Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: taskSuspend - What will be happened in long long time? Subject: target shell, and i() Subject: A32 Addressing Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: problem on using objcopyppc Subject: How do I get the MAC address using vxWorks API? Subject: Re: T2 man pages??? Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: make for Win32? Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: How do I get the MAC address using vxWorks API? Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: Debugging with Cache Enabled Subject: Re: taskSuspend - What will be happened in long long time? Subject: RE: How do I get the MAC address using vxWorks API? Subject: TEST (DO NOT READ) Subject: Re: A32 Addressing Subject: Linked List VME to PCI DMA with mv2604 and VxWorks 5.4 Subject: ISA I/O with PPC Subject: Seeking detailed info on VxWorks. Subject: UGL graphics on MV2700 Subject: UGL graphics on mv2700 Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: problem booting target Subject: Re: Async Read Failure Subject: BroadCast Size in Tornado2 Subject: Re: target shell, and i() Subject: Re: Seeking detailed info on VxWorks. Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: problem booting target Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: SSL with VxWorks Wind Web Server Subject: Re: how to develop custom TELNET and FTP? Subject: Re: how to develop custom TELNET and FTP? Subject: change FTP timeout? Subject: VxWorks-zbuf Subject: Re: target shell, and i() Subject: Re: Debugging with MMU Enabled Subject: Re: Handling Interrupt - Subject: Re: how to develop custom TELNET and FTP? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: what does mean the warning "trigraph(s) encountered" Subject: Re: Handling Interrupt - Subject: Re: Debugging with MMU Enabled Subject: MIPS based BSP help Subject: burn boot image into boot flash Subject: Re: VxWorks-zbuf Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: VME interrupts Subject: Disk Corruption Subject: Re: Disk Corruption Subject: Re: VME interrupts Subject: Re: Handling Interrupt - Subject: tcl: buildStart + callbacks Subject: Re: T2 man pages??? Subject: Re: Back plane communication and VxMP Subject: The routing and interface table information Subject: re: VxWorks-zbuf Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: re: VxWorks-zbuf Subject: Re: T2 man pages??? Subject: Problem with the VxWorks image size Subject: Re: Disk Corruption Subject: FTP with mkdir Subject: Re: request Subject: VxWorks and MIPS Subject: Re: Problem with the VxWorks image size Subject: Re: FTP with mkdir Subject: Dynamic Config of IPv4 and etherInputHook Subject: RE: Vx Exploder Digest Subject: VxWorks hang up in mcp750 Subject: Re: Problem with the VxWorks image size Subject: Re: Disk Corruption Subject: VxWorks 5.4, dosFs and memory consumption Subject: RE: How do I get the MAC address using vxWorks API? Subject: multicast Subject: Re: FTP with mkdir Subject: netTask run put of stackmemory Subject: Async Read Failure Subject: async read failure posting Subject: Async Read Failure Subject: Re: How do I get the MAC address using vxWorks API? Subject: PMC 663J Ethernet Card Subject: RE: PMC 663J Ethernet Card Subject: PMC 663J Ethernet Card Subject: Re: netTask run put of stackmemory Subject: In 8260 with mmu and cache enabled you have not flash visibility Subject: DHCP Client and Symbol table Subject: Re: VME interrupts Subject: Re: Back plane communication and VxMP Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: System hangs for certain Image sizes Subject: serial ports, ioGlobalStdSet & shellOrigStdSet Subject: Re: burn boot image into boot flash Subject: Is this really too hard to be impossible? Winsh/Target STDIN Subject: New Exploder Web Interface and other administrivia Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Task Hook Switch Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: PowerPC 7400 Altivec and VxWorks Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: tffs on PPMC750 Subject: Re: VxWorks and MIPS Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: FTP with mkdir Subject: Tamper Resistance Techniques Subject: Re: VxWorks and MIPS Subject: Re: netTask run put of stackmemory Subject: Problem with Tornado II debugger Subject: FTP-Server Subject: Re: Debugging with MMU Enabled Subject: Re: Task Hook Switch Subject: Re: Is this really too hard to be impossible? Winsh/Target STDIN Subject: network initialization Subject: Re: network initialization Subject: Re: Tamper Resistance Techniques Subject: 162 Petra problem Subject: reloc overflow Subject: strange problem Subject: ring buffers Subject: Re: Is this really too hard to be impossible? Winsh/Target STDIN Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: MIME Cookies Subject: Re: Java or TCL with vxworks Subject: Re: ring buffers Subject: Logging Stuff.. Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Logging Stuff.. Subject: discard route Subject: How to build and download tens of test applications into the VxWorks target Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Task Hook Switch Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: CORBA-blocking on vxWorks Subject: Exception handling problem Subject: vxWorks and CORBA Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: unzip utility for vxworks Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Anyone experience with END interface changes of T2CP4 ? Subject: NFS Problem Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: How to build and download tens of test applications into the VxWorks target Subject: Re: Anyone experience with END interface changes of T2CP4 ? Subject: Re: unzip utility for vxworks Subject: using UGL for monochrome display Subject: Re: using UGL for monochrome display Subject: Linked List VME to PCI DMA with mv2604 and VxWorks 5.4 Subject: Re: strange problem Subject: Programming Flash from VxWorks Subject: Re: Problem with the VxWorks image size Subject: How to find the function name? Subject: muxBind Subject: Motorola 8260 cache and flash visibility Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Logging Stuff.. Subject: invalid descriptor on a select... Subject: Re: The routing and interface table information Subject: Re: CORBA-blocking on vxWorks Subject: Re: How to find the function name? Subject: Re: T2 man pages??? Subject: Re: Task Hook Switch Subject: Re: reloc overflow Subject: Re: (beginer) Problem "catching" a cPCI interrupt Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Booting error of making vxWorks image file at T2 project ficilities Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: re: network initialization Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: tffs on PPMC750 Subject: Re: network initialization Subject: Re: network initialization Subject: VXWTask vs task lifecycle Subject: interrupt controller 8259 Subject: Any form of sleep mode in VxWorks?? Subject: Is the copied SDRAM version of VxWorks preserved Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: CORBA-blocking on vxWorks Subject: re: Is the copied SDRAM version of VxWorks preserved Subject: re: Any form of sleep mode in VxWorks?? Subject: Re: Logging Stuff.. Subject: RE: Any form of sleep mode in VxWorks?? Subject: VxWorks Subject: Re: network initialization Subject: Re: network initialization Subject: Re: Is the copied SDRAM version of VxWorks preserved Subject: Re: Is the copied SDRAM version of VxWorks preserved Subject: bootrom on the PPC7400 Subject: loopback problems Subject: Re: Subject: vxworks.st and vxwork's project facility Subject: Target connection lost Subject: prjConfig.c and kernelInit() Subject: Re: vxworks.st and vxwork's project facility Subject: re: VxWorks Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: setjmp and longjmp Subject: VxWorks Clock Setting Subject: Re: VxWorks Clock Setting Subject: Re: Programming Flash from VxWorks Subject: Re: prjConfig.c and kernelInit() Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: [Help Me] task Delay less than sys clk tick Subject: Tornado2 and command-line make Subject: Re: Tornado2 and command-line make Subject: need simple quick help concerning MAKE Subject: copying to RAM file sysytem in vxworks Subject: Re: need simple quick help concerning MAKE Subject: Re: need simple quick help concerning MAKE Subject: Re: need simple quick help concerning MAKE Subject: Re: interrupt controller 8259 Subject: vxworks image Subject: Execution speed problem Subject: Link a picture to a ROM-image Subject: Re: Linking errors Subject: [Fwd: multiply defined symbols] Subject: TEst 'C' program and vxWorks linking. Subject: 68K FPP Exceptions Subject: Re: Linking errors Subject: Re: [Help Me] task Delay less than sys clk tick Subject: Re: Link a picture to a ROM-image Subject: Re: Link a picture to a ROM-image Subject: Re: Link a picture to a ROM-image Subject: Re: How to find the function name? Subject: re: Execution speed problem Subject: BSP for MIPS CW4000 architecture Subject: Multiply defined symbols Subject: vxWorks bootrom to load NetBSD Subject: Re: 68K FPP Exceptions Subject: Re: serial ports, ioGlobalStdSet & shellOrigStdSet Subject: Re: setjmp and longjmp Subject: Re: VxWorks Clock Setting Subject: DHCP Client Subject: VxSim running on win98? Subject: Re: Multiply defined symbols Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: Linking errors Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Multiply defined symbols Subject: warnings Subject: Re: How to find the function name? Subject: Re: How to find the function name? Subject: Binary files and Gnu tools. Subject: network driver hang problem Subject: Re: Multiply defined symbols Subject: Re: VXWTask vs task lifecycle Subject: Re: [Help Me] task Delay less than sys clk tick Subject: Re: VxSim running on win98? Subject: Re: VxSim running on win98? Subject: Re: VxSim running on win98? Subject: problem with open file descriptors Subject: Serial Interrupts Subject: Re: [Help Me] task Delay less than sys clk tick Subject: WRS SNMP stack Subject: Re: Link a picture to a ROM-image Subject: Re: Serial Interrupts Subject: Re: Multiply defined symbols Subject: some basic questions... Subject: Re: some basic questions... Subject: Re: some basic questions... Subject: Re: changing console options Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: [Q] END Driver Problems(Including Source code) Subject: Re: Serial Interrupts Subject: Combining downloadable and bootable projects Subject: link to archive of this newsgroup? Subject: counting semaphores Subject: Re: counting semaphores Subject: Re: link to archive of this newsgroup? Subject: bootLoadModule Subject: Re: bootLoadModule Subject: Re: Combining downloadable and bootable projects Subject: bootLoadModule again Subject: C++ and VxSim? Subject: Re: bootLoadModule again Subject: Re: C++ and VxSim? Subject: sendto() failing with errno 13 (permission denied) Subject: Tornado debugging Subject: Re: counting semaphores Subject: Re: counting semaphores Subject: Re: bootLoadModule Subject: Re: bootLoadModule again Subject: Re: sendto() failing with errno 13 (permission denied) Subject: system time and sysClkRateSet() Subject: Re: bootLoadModule Subject: Re: bootLoadModule again Subject: Re: counting semaphores Subject: Re: Tornado debugging Subject: difference between vxWorks.bin and vxWorks.st? Subject: ISRs Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: ISRs Subject: Re: counting semaphores Subject: Re: ISRs Subject: re: TEst 'C' program and vxWorks linking. Subject: Re: ISRs Subject: getting fcc3 to work on the sbc8260 vxworks BSP Subject: Re: Binary files and Gnu tools. Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: ISRs Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [Help Me] task Delay less than sys clk tick Subject: Re: VxSim running on win98? Subject: RE: getting fcc3 to work on the sbc8260 vxworks BSP Subject: allocate large memory block Subject: Re: allocate large memory block Subject: Help needed - WindSNMP agent v1/v2 - sending Traps in SNMPv2 format Subject: Re: interrupt controller 8259 Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: Re: ISRs Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: Re: getting fcc3 to work on the sbc8260 vxworks BSP Subject: Re: Target connection lost Subject: Re: need simple quick help concerning MAKE Subject: Writing Debug messages to COM ports Subject: Re: ISRs Subject: JEENI ICE Subject: Re: JEENI ICE Subject: Quick Question I2C / UBR patch on 860p Subject: allocate large memory block Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: RPC UDP Sockets Problem Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: Re: Tornado debugging Subject: Re: Combining downloadable and bootable projects Subject: Re: Tornado debugging Subject: Re: Tornado debugging Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: VME Shared Memory Network Subject: Re: getting fcc3 to work on the sbc8260 vxworks BSP Subject: Help: Serial I/O PPC850, VxWorks 5.4, Tornado II Subject: Where to download Tornado 2.0 Windows 2000 Patch? Subject: Where to download Tornado 2.0 Windows 2000 Patch? Subject: ARM MMU vs. write to flash Subject: Re: Where to download Tornado 2.0 Windows 2000 Patch? Subject: network stability and unexpected breakpoints: Tornado 1.0.1 PowerPC Subject: Re: ISRs Subject: Re: Combining downloadable and bootable projects Subject: Re: Writing Debug messages to COM ports Subject: Re: How to spawn two target server for two different boards in one Subject: Re: Where to download Tornado 2.0 Windows 2000 Patch? Subject: Re: difference between vxWorks.bin and vxWorks.st? Subject: RE: VME Shared Memory Network Subject: Re: [Help Me] task Delay less than sys clk tick Subject: Re: Where to download Tornado 2.0 Windows 2000 Patch? Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: Where to download Tornado 2.0 Windows 2000 Patch? Subject: Re: network stability and unexpected breakpoints: Tornado 1.0.1 PowerPC Subject: using my custom BSP code to built a vxworks image Subject: Re: using my custom BSP code to built a vxworks image Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Subject: Using Rational with VxWorks Subject: Re: changing console options Subject: Re: Serial Interrupts Subject: Re: VME Shared Memory Network Subject: NPT Driver Templates Subject: END and BSD4.3 Subject: Re: Using Rational with VxWorks Subject: Re: problem with open file descriptors Subject: Re: allocate large memory block Subject: PCI network drivers in vxWorks Subject: Re: Using Rational with VxWorks Subject: Problem with Sockets Subject: re: PCI network drivers in vxWorks Subject: wtn50 Subject: Re: wtn50 Subject: Re: Problem with Sockets Subject: reflective memory. Subject: Re: reflective memory. Subject: Help with Target Server Subject: Priority based polling scheme Subject: Re: reflective memory. Subject: Re: VxWorks Clock Setting Subject: Need help: Booting MVME2308 from external flash Subject: Re: Programming Flash from VxWorks Subject: Retrieving ommand line parameters in VxSim Subject: Telnet Code for Windows? Subject: Re: Retrieving ommand line parameters in VxSim Subject: Re: link to archive of this newsgroup? Subject: Re: Priority based polling scheme Subject: ppc860 BSP help.. Subject: ppc860 BSP help.. Subject: Re: Need help: Booting MVME2308 from external flash Subject: NPT and END Subject: Re: ppc860 BSP help.. Subject: Re: VxWorks Clock Setting Subject: Re: Telnet Code for Windows? Subject: Re: NPT Driver Templates Subject: Re: END and BSD4.3 Subject: intDisable fail Subject: Updating IP Routing Table Subject: what's objLib? Subject: Datum bc635PMC time card Subject: RE: END and BSD4.3 Subject: Blocking terminal i/o Subject: vxsys.com Subject: Re: what's objLib? Subject: Re: Blocking terminal i/o Subject: issue about ccppc Subject: loading application module using startup script Subject: Re: Help: Serial I/O PPC850, VxWorks 5.4, Tornado II Subject: variable argument list (stdarg.h) problems Subject: Re: intDisable fail Subject: Re: Updating IP Routing Table Subject: booting Subject: "iosDevShow" and "devs" Subject: Re: loading application module using startup script Subject: Re: "iosDevShow" and "devs" Subject: TFFS on PPMC750 Subject: Re: Help: Serial I/O PPC850, VxWorks 5.4, Tornado II Subject: Re: intDisable fail Subject: Re: TFFS on PPMC750 Subject: Re: intDisable fail Subject: Re: what's objLib? Subject: Re: vxworks boot ROM_COPY Subject: SCSI problem Subject: NT hosted C++ Cross Compilers compatible with VxWorks/PPC Subject: 2604, Universe II and Sysreset Subject: Unitialized interrupt with MMU enabled on 8260 Subject: RE: 2604, Universe II and Sysreset Subject: Network stack 128-byte mbuf pool does not recover Subject: Re: Telnet Code for Windows? Subject: Re: Network stack 128-byte mbuf pool does not recover Subject: Re: taskSuspend - What will be happened in long long time? Subject: Re: reloc overflow Subject: booting Subject: Can not "Watchdog Timers" & "malloc" be used simultaneously ? Subject: TCP Socket Trouble Subject: re: 2604, Universe II and Sysreset Subject: Need for help: replace VxWorks network stack (SENS) with a 3rd Subject: Re: Can not "Watchdog Timers" & "malloc" be used simultaneously ? Subject: switch off mouse cursor Subject: split-by-reloc help? Subject: One module not syncing symbols with host symbol table Subject: Getting TMS started Subject: Re: switch off mouse cursor Subject: VxWorks resolver/DNS cache Subject: Re: what's objLib? Subject: Re: intDisable fail Subject: Download times to X86 board. Subject: Re: 2604, Universe II and Sysreset Subject: Testing an SNMP Agent... Subject: Re: One module not syncing symbols with host symbol table Subject: DHCP request before ATA download Subject: STL help in VxWorks Subject: Re: Getting TMS started Subject: Re: STL help in VxWorks Subject: where are _RType defined? Subject: Enable/disable interrupt Subject: AR386 utility provided vith T2 Subject: VME interrupts problem (longish) Subject: Re: VME interrupts problem (longish) Subject: Recruiment offer soft developer VxWorks in California Subject: UDP anomaly Subject: CD access from VxWorks calls Subject: call to pppInit() Subject: Re: vxworks boot ROM_COPY Subject: UDP eating mbufs!!! Subject: SM Networks and VxMP Subject: Re: One module not syncing symbols with host symbol table Subject: Re: One module not syncing symbols with host symbol table Subject: Re: TFFS on PPMC750 Subject: Re: SM Networks and VxMP Subject: Re: Task Hook Switch Subject: Re: SM Networks and VxMP Subject: Processor speed Subject: Re: SM Networks and VxMP Subject: Equal cost routing Subject: dosFs-2 + vxSim Subject: vxworks test Subject: vxworks test Subject: vxworks test Subject: vxworks test Subject: Need Info on End Driver FCC support for Ethernet connections... Subject: Re: Problem with Sockets : Files is not closed when one task is deleted Subject: visionclick beats singlestep? Subject: Break Loop(vxWorks). Subject: Re: visionclick beats singlestep? Subject: Please include my Email ID Subject: Re: Equal cost routing Subject: Socket structure Subject: Re: One module not syncing symbols with host symbol table Subject: IDMA sample for MPC860 Subject: T2 NT and several architectures Subject: Re: what's objLib? Subject: GNU tar Subject: Re: Break Loop(vxWorks). Subject: Re: StrataFlash low level drivers Subject: RE: GNU tar Subject: Re: Break Loop(vxWorks). Subject: problem on MCast routing Subject: writing ISR for com1 Subject: Re: Blocking terminal i/o Subject: Tornado-query Subject: How to change the stack size of tNetTask ? Subject: Problem with SIGNALS Subject: Re: writing ISR for com1 Subject: Re: loadModule fails on target shell but works with windShell Subject: Re: T2 NT and several architectures Subject: limit on vxsims? Subject: BSP problem with 80MHz TQM860 Subject: Level Vs Edge Triggered interrupts Subject: Re: Level Vs Edge Triggered interrupts Subject: Re: Creating files in the host(NT) Subject: Re: Building standalone vxworks image using project facility Subject: Re: Level Vs Edge Triggered interrupts Subject: problem with coffArmToBin Subject: Re: what's objLib? Subject: Re: Processor speed Subject: How to execute a Target Shell command from VxWorks Subject: Unable to use ifunit ("ln0") when building a vxWorks ROM image Subject: Re: How to execute a Target Shell command from VxWorks Subject: etherMultiAdd ENETRESET error for NPT driver Subject: Clist on VxWorks Subject: Re: Tornado debugging Subject: Re: visionclick beats singlestep? Subject: loadModule fails on target shell but works with windShell Subject: Re: what's objLib? Subject: Re: NPT and END Subject: Re: Problem with SIGNALS Subject: 2 x END drivers? Subject: measure cpu load in vxworks Subject: measure cpu load in vxworks Subject: dosFs-2 + vxSim (re-post) Subject: Re: Break Loop(vxWorks). Subject: Building standalone vxworks image using project facility Subject: help with reading character in raw mode from stdin Subject: Re: problem with coffArmToBin Subject: Re: measure cpu load in vxworks Subject: trueFFS?? DOSFS2.0?? Subject: Need info on timing a function Subject: Re: Break Loop(vxWorks). Subject: Re: where are _RType defined? Subject: rpcore backend Client Timed out. Subject: Re: Need info on timing a function Subject: Re: measure cpu load in vxworks Subject: Re: Tornado debugging Subject: Re: Tornado debugging Subject: Re: Tornado debugging Subject: VxWorks, PC/104 and ORiNOCO wireless lan Subject: DosFS 2.0?? trueFFS?? Subject: Re: Clist on VxWorks Subject: How do I get the default gateway address using VxWorks API? Subject: Re: what's objLib? Subject: Software floating point on i386EX target Subject: Software floating point on i386EX target Subject: vxWorks hangs on MCP750 board Subject: Re: what's objLib? Subject: Re: Clist on VxWorks Subject: Re: Clist on VxWorks Subject: Re: problem with coffArmToBin Subject: RAM_LO, RAM_HI & Config.h Subject: Video applications Subject: Re: Break Loop(vxWorks). Subject: Re: UDP eating mbufs!!! Subject: Re: what's objLib? Subject: Subject: QNX vs vxworks: comp.os.qnx posting Subject: Re: QNX vs vxworks: comp.os.qnx posting Subject: Re: Clist on VxWorks Subject: Re: RAM_LO, RAM_HI & Config.h Subject: How to access MySQL database ? Subject: Re: QNX vs vxworks: comp.os.qnx posting Subject: Re: vxWorks hangs on MCP750 board Subject: ROTS pros/cons Subject: re: measure cpu load in vxworks Subject: Tornado Prototyper on window ME, does it work? Subject: Re: Software floating point on i386EX target Subject: interrupts Subject: Timer Problems Subject: Re: interrupts Subject: loading vxworks in RAM Subject: Re: How do I get the default gateway address using VxWorks API? Subject: How to implement fixed location when build a bootable project Subject: Re: loading vxworks in RAM Subject: Re: QNX vs vxworks: comp.os.qnx posting Subject: T2.02 with 82559 Subject: Tornado Prototyper help !! Subject: Tornado Prototyper help !! Subject: Help with Tornado Prototyper !!! Subject: a BSP for 8260 Subject: Re: How to implement fixed location when build a bootable project Subject: create scripts or progs and run inside the shell Subject: Re: QNX vs vxworks: comp.os.qnx posting Subject: Re: interrupts Subject: Re: what's objLib? Subject: SimNt and WindML Subject: Re: SimNt and WindML Subject: Two Masters + Two NICs on a PCI Bus Subject: Re: How to execute a Target Shell command from VxWorks Subject: Re: Help with Tornado Prototyper !!! Subject: Tornado2 Windview Subject: dosFS2 & tarArchive Subject: Re: cc1plus fatal signal 125? Subject: How to get DNS server addr & default gateway addr from a DHCP server Subject: WTX AGENT_COMMUNICATION_ERROR Subject: Re: cc1plus fatal signal 125? Subject: Problems with PPP between Win95 and vxWorks Subject: AW: dosFS2 & tarArchive Subject: Re: T2.02 with 82559 Subject: DosFs2.0 on x86 Subject: Re: what's objLib? Subject: re: DosFs2.0 on x86 Subject: dhcp server Subject: Re: what's objLib? Subject: Re: SIS900 & TriMedia Subject: Unregistering the target server. Subject: Re: Timer Problems Subject: DosFs2 and RDM (Raima Database Manager) Subject: Mutex Semaphores in VxWorks Subject: JavaScript for VxWorks is now available Subject: RE: dosFS2 & tarArchive Subject: How do I change the TFTP server session task priority? Subject: Recall: Mutex Semaphores in VxWorks Subject: Re: what's objLib? Subject: RE: dosFS2 & tarArchive Subject: Re: Mutex Semaphores in VxWorks Subject: Telecom & VxWorks Opportunities Subject: Incorrect MPC8260 interrupt vector numbers Subject: Help: Software Emulation Exception Subject: Re: a BSP for 8260 Subject: Re: Mutex Semaphores in VxWorks Subject: sysToMonitor: restarting.... error Subject: Re: Symbol Lookup Subject: Re: TCP Socket Trouble Subject: Re: NT hosted C++ Cross Compilers compatible with VxWorks/PPC Subject: Re: PPC 821/823 with passive LCD display Subject: IPCP configure options ? Subject: Starting end after boot Subject: Re: Starting end after boot Subject: Re: SimNt and WindML Subject: Can I add any command into target shell?? Subject: Re: Can I add any command into target shell?? Subject: Re: Incorrect MPC8260 interrupt vector numbers Subject: loadmeter module Subject: SysAuxClock and periodic task Subject: Re: SysAuxClock and periodic task Subject: Re: Symbol Lookup Subject: Any details on semGiveDefer? Subject: Re: How do I change the TFTP server session task priority? Subject: digestOnly Subject: Reuse of the UDP Socket in vxWorks. Subject: boot from FAT32 drives Subject: dhcps used etherInputHook??? Subject: writev return ENOBUFS for UDP when iov_len is 64. Subject: Re: writev return ENOBUFS for UDP when iov_len is 64. Subject: Re: SysAuxClock and periodic task Subject: Re: SysAuxClock and periodic task Subject: executing script on windsh Subject: POSIX pipe, not pipeDrv Subject: DHCP client problems Subject: Using serial ports with VxSim Subject: Re: Any details on semGiveDefer? Subject: Re: executing script on windsh Subject: TGTSVR Exception when downloading Java files Subject: deleting task Subject: Two seperate ethernet adapters Subject: Re: what's objLib? Subject: help with mil-std-1553 Subject: Re: deleting task Subject: Trouble with "defunct processes" Subject: Re: what's objLib? Subject: Re: POSIX pipe, not pipeDrv Subject: Need help with updating an entry in DHCP server. Subject: Re: SysAuxClock and periodic task Subject: Need help !!! Subject: Shared Memory Booting Subject: VxWorks Library functions to drive Serial Interface (RS232)? Subject: Shared Resources Subject: vxworks query Subject: Tornado query Subject: Re: Shared Memory Booting Subject: mkboot utilities under vxworks Subject: Re: help with mil-std-1553 Subject: Re: help with mil-std-1553 Subject: Re: Need help with updating an entry in DHCP server. Subject: Re: Help: Software Emulation Exception Subject: re: Shared Resources Subject: ARP - Multiple Subnets , BSD and END Subject: Anybody did embedded development and board design around ultrasparc III chipset ? Subject: Re: boot from FAT32 drives Subject: etherInputHookAdd PROMISCOUS MODE ? Subject: ..F entries for HP-64 Subject: Glass cockpit vendor??? suggestions? Subject: Re: ..F entries for HP-64 <--- Ooops. Subject: How long is one tick in VxWorks? Subject: Re: How long is one tick in VxWorks? Subject: how to printf a 64bit long long? Subject: WTX EXCHANGE TIMEOUT Subject: How to concatenate bootrom and vxWorks with S-records Subject: Re: How to concatenate bootrom and vxWorks with S-records Subject: vxworks tyWrite( ) Subject: Re: vxworks query Subject: Re: mkboot utilities under vxworks Subject: DHCP Client Subject: Reading VxWorks-formatted disks on Unix Subject: Re: Reading VxWorks-formatted disks on Unix Subject: Re: DHCP Client Subject: Re: DHCP Client Subject: Re: DHCP Client Subject: Re: etherInputHookAdd PROMISCOUS MODE ? Subject: Can VxWorks withstand Denial of Service attacks? Subject: There are still some "source run-on" problems in the HTML versions of the Apex manuals Subject: Re: There are still some "source run-on" problems in the HTML versions of the Apex manuals <-- oops again. Subject: DHCP Server problem Subject: DHCP Server Subject: DHCP Subject: re: WTX EXCHANGE TIMEOUT Subject: Re: how to printf a 64bit long long? Subject: re-entrant version of signal? Subject: [Fwd: Fw: vxworks query] Subject: Fw: vxworks query Subject: vxworks query Subject: Help New Baby Subject: sockets: aborting an accept() call Subject: Re: How long is one tick in VxWorks? Subject: Re: How long is one tick in VxWorks? Subject: arp Query Subject: "VISA" software for VxWorks? Subject: [Q] Subclasses in CrossWind Watch Window Subject: Re: sockets: aborting an accept() call Subject: Re: How to concatenate bootrom and vxWorks with S-records Subject: VxWorks API : arp or rarp API Subject: How can the OS ignore ICMP redirects? Subject: [Q] END/NPT and MUX interface Subject: VxWorks serial driver problems Subject: Re: How to concatenate bootrom and vxWorks with S-records Subject: Re: Help: Software Emulation Exception Subject: Re: How to concatenate bootrom and vxWorks with S-records Subject: Re: how to printf a 64bit long long? Subject: How can I retreive TCP/UDP statistics Subject: vxworks help Subject: Re: WTX EXCHANGE TIMEOUT Subject: Re: how to printf a 64bit long long? Subject: ftpXfer Subject: DosFs2 1024 byte sector Subject: Re: sockets: aborting an accept() call Subject: Problem with RAM_HIGH_ADRS on MVME167 Subject: Re: [Q] Subclasses in CrossWind Watch Window Subject: Re: Problem with RAM_HIGH_ADRS on MVME167 Subject: An interesting question Subject: Re: Problem with RAM_HIGH_ADRS on MVME167 Subject: Re: An interesting question Subject: Free flash file system for vxworks? Subject: Win2K-Pro Internet Browsing Problems....HELP!!! Subject: Re: Problem with RAM_HIGH_ADRS on MVME167 Subject: Re: Free flash file system for vxworks? Subject: Re: Win2K-Pro Internet Browsing Problems....HELP!!! Subject: Re: Free flash file system for vxworks? Subject: Re: Free flash file system for vxworks? Subject: Re: ftpXfer Subject: IP stack performances Subject: Re: IP stack performances Subject: Re: An interesting question Subject: Re: An interesting question Subject: Re: An interesting question Subject: Semaphores and SEM_Q_PRIORITY Subject: Re: Free flash file system for vxworks? Subject: Re: sockets: aborting an accept() call Subject: Problems with shared memory network: target servers die, PCI Subject: BSP's for CETIA boards Subject: Re: Reading VxWorks-formatted disks on Unix Subject: Finding the address of the host Subject: Re: Debuging BSP Subject: RE: Problem with RAM_HIGH_ADRS on MVME167 Subject: Booting from flash Subject: Re: Finding the address of the host Subject: re: : Incorrect MPC8260 interrupt vector numbers Subject: Re: Booting from flash Subject: Simple NVRAM and SRAM question Subject: Re: Simple NVRAM and SRAM question Subject: getting CPU load Subject: lkup() and system hangs Subject: RE: : Incorrect MPC8260 interrupt vector numbers Subject: Problem with Default Route Subject: Test Subject: Identifying Valid vxWorks Image Subject: MVME162P and MVME172P BSPs Subject: I can't use nanosleep() in VXSim on PC ?? Subject: PC/104, wireless lan and PCMCIA adapter Subject: Booting from flash again Subject: Availability of a gigabit ethernet driver? Subject: Stack Size Subject: Re: Identifying Valid vxWorks Image Subject: Serial I/O query Subject: DosFs2.0 & Tffs Subject: tNetTask : undefined error Subject: Net components Subject: running shell script from code Subject: Re: I can't use nanosleep() in VXSim on PC ?? Subject: Re: Stack Size Subject: Re: tNetTask : undefined error Subject: Re: Booting from flash again Subject: Re: Net components Subject: Re: I can't use nanosleep() in VXSim on PC ?? Subject: Re: Stack Size Subject: Re: Booting from flash Subject: regression test under NT Subject: chkdsk without dosFs 2.0: how? Subject: Re: Booting from flash Subject: Profibus Subject: Do not getting interrupts on PentiumPC Subject: Help - DHCP Server Question Subject: Re: Do not getting interrupts on PentiumPC Subject: Re: regression test under NT Subject: _inet_addr, where is it? Subject: GCC 2.95.3 for VxWorks-WinNT (Tornado 2) Subject: Build Script Question Subject: Re: DosFs2.0 & Tffs Subject: Re: Stack Size Subject: Re: Build Script Question Subject: Attaching debugger to a spawning task... Subject: Error Loading Boot File Subject: Re: GCC 2.95.3 for VxWorks-WinNT (Tornado 2) Subject: Need some helpful advice about how to write Wireless LAN Driver Subject: Re: regression test under NT Subject: Using iosFdNew in a NPT sockets back end. Subject: Re: Error Loading Boot File Subject: Re: Attaching debugger to a spawning task... Subject: Re: Build Script Question Subject: VxWorks Showing Time in BST Subject: Re: VxWorks Showing Time in BST Subject: Re: VxWorks Showing Time in BST Subject: Re: GCC 2.95.3 for VxWorks-WinNT (Tornado 2) Subject: MIPs BSP, templateMips, multiplexed interrupts and exceptions? Subject: Re: Error Loading Boot File Subject: Re: Attaching debugger to a spawning task... Subject: Re: _inet_addr, where is it? Subject: Re: GCC 2.95.3 for VxWorks-WinNT (Tornado 2) Subject: Re: Profibus Subject: Re: Attaching debugger to a spawning task... Subject: Re: Attaching debugger to a spawning task... Subject: VxWorks PPP Subject: Re: How can I retreive TCP/UDP statistics Subject: loadModule() with target-resident object files Subject: Re: loadModule() with target-resident object files Subject: Re: loadModule() with target-resident object files Subject: Cannot cd to mounted NFS directory Subject: Re: loadModule() with target-resident object files Subject: How binArrayStart is gotten Subject: DosFs2 file load problem Subject: Re: GCC 2.95.3 for VxWorks-WinNT (Tornado 2) Subject: Re: VxWorks PPP Subject: Ethernet performance Subject: Re: DosFs2 file load problem Subject: NAT Subject: Re: NAT Subject: Re: VxWorks Showing Time in BST Subject: Re: stripppc and objcopyppc Subject: Re: How binArrayStart is gotten Subject: high resolution clock Subject: Re: loadModule fails on target shell but works with windShell Subject: Re: How do I get the default gateway address using VxWorks API? Subject: Re: Two Masters + Two NICs on a PCI Bus Subject: read() call is blocked Subject: Re: loadModule() with target-resident object files Subject: Re: loadModule() with target-resident object files Subject: Re: read() call is blocked Subject: Re: boot vxworks on PC Subject: Re: read() call is blocked Subject: Re: loadModule() with target-resident object files Subject: Re: 2 x END drivers? Subject: RE: How binArrayStart is gotten Subject: Re: _inet_addr, where is it? Subject: Replacement of VxWorks calls for Windows target Subject: SCSI ZIP drive Subject: Re: Cannot cd to mounted NFS directory Subject: Re: high resolution clock Subject: END OBJ inquiry? Subject: VxWorks and arrowpoint Subject: exception handling Subject: Re: exception handling Subject: SCSI Iomega ZIP drive Subject: Re: Replacement of VxWorks calls for Windows target Subject: Re: Ethernet performance Subject: Power Management on Pentium III Subject: send() exception Subject: help: adding cgi launch on Rapid Logic for web Subject: Re: Cannot cd to mounted NFS directory Subject: help please, very urgent Subject: Re: help please, very urgent Subject: help please Subject: help please, very urgent Subject: Re: help please Subject: Re: loadModule() with target-resident object files Subject: Re: loadModule() with target-resident object files Subject: RE: read() call is blocked Subject: Re: help please, very urgent Subject: Re: Error Loading Boot File Subject: Where to get a free chkdsk routine? Subject: USENET comp.os.vxworks. Subject: RE: read() call is blocked Subject: Re: Error Loading Boot File Subject: Processor IDLE Time Subject: "host name" entry on the vxWorks boot line Subject: RE: Where to get a free chkdsk routine? Subject: RE: Where to get a free chkdsk routine? Subject: Moving user-compiled image??? Subject: Re: "host name" entry on the vxWorks boot line Subject: Re: help please Subject: ioctl and serial port setup Subject: interrupts from a serial board Subject: Re: Processor IDLE Time Subject: Re: loadModule fails on target shell but works with windShell Subject: Re: "host name" entry on the vxWorks boot line Subject: Long kernel timer interrupts Subject: Mounting ATA cdrom on pentium target Subject: Re: SCSI Iomega ZIP drive Subject: Re: interrupts from a serial board Subject: Re: help please, very urgent Subject: Re: help please Subject: help please Subject: Re: "host name" entry on the vxWorks boot line Subject: Insight debugger with Tornado II? Subject: RE: Mounting ATA cdrom on pentium target Subject: vxworks bit addressing issue Subject: Re: Processor IDLE Time Subject: Re: high resolution clock Subject: PKZIP for vxworks? Subject: Re: help please Subject: Re: send() exception Subject: Re: vxworks bit addressing issue Subject: NFS file copy corruption Subject: RE: vxworks bit addressing issue Subject: HSRP or VRRP Subject: Re: help please Subject: Re: help please, very urgent Subject: Re: Long kernel timer interrupts Subject: Re: vxworks bit addressing issue Subject: Re: SCSI Iomega ZIP drive Subject: Re: vxworks bit addressing issue Subject: Re: vxworks bit addressing issue Subject: Compilation error (cannot find header) Subject: Re: Compilation error (cannot find header) Subject: Re: downloadable application.. Subject: MIPS32 e_flag errors.. Subject: Newbie Question Subject: Re: MIPS32 e_flag errors.. Subject: Re: MIPS32 e_flag errors.. Subject: ppcbug + bootloader for powerpc? Subject: How to add incoming IP packet at ethernet level. Subject: Re: MIPS32 e_flag errors.. Subject: Getting Immr register for MPC860 Subject: textual output Subject: Re: END OBJ inquiry? Subject: ftpXfer problem (works only 8 times) Subject: Re: Do not getting interrupts on PentiumPC Subject: Re: textual output Subject: Re: ftpXfer Subject: Re: Long kernel timer interrupts Subject: Re: textual output Subject: Re: Getting Immr register for MPC860 Subject: VxWorks : Device drivers Subject: -fvolatile Subject: How to get the size of bootrom Subject: Re: textual output Subject: Re: read() call is blocked Subject: vxWorks info sites Subject: Re: PKZIP for vxworks? Subject: Re: MIPS32 e_flag errors.. Subject: Re: MIPS32 e_flag errors.. Subject: Re: -fvolatile Subject: Re: VxWorks : Device drivers Subject: tFFS and dosFs in VxWorks Subject: Re: vxworks bit addressing issue Subject: salary info for EMBEDDED Eng's Subject: FTP transfer mode Subject: Re: vxworks bit addressing issue Subject: RE: vxworks bit addressing issue Subject: Re: MIPS32 e_flag errors.. Subject: Re: vxworks bit addressing issue Subject: Re: tFFS and dosFs in VxWorks Subject: vLAN- 802.1q Subject: A24 on MVME2400 Subject: Re: vxworks bit addressing issue Subject: MVME 2604 and PPCBUG and test routines Subject: Re: "host name" entry on the vxWorks boot line Subject: Re: "host name" entry on the vxWorks boot line Subject: Re: "host name" entry on the vxWorks boot line Subject: Re: vxworks bit addressing issue Subject: RE: vxworks bit addressing issue Subject: Re: A24 on MVME2400 Subject: GoAhead Web Server Subject: Re: -fvolatile Subject: mget implementation Subject: what is opposite to etherOutput ? Subject: RPC under VxWorks Subject: RE: mget implementation Subject: freebsd cross compiler Subject: US-CA-Sr Embedded Software Developer Subject: Re: MVME 2604 and PPCBUG and test routines Subject: Re: Debuging BSP Subject: Re: -fvolatile Subject: Re: GoAhead Web Server Subject: ARP Timer value Subject: PCI problem. Subject: strang ping time Subject: Re: ARP Timer value Subject: Re: Debuging BSP Subject: Re: freebsd cross compiler Subject: Re: FTP transfer mode Subject: Re: RPC under VxWorks Subject: Re: Debuging BSP Subject: Arpresolve: llinfo Subject: Re: -fvolatile Subject: Re: 2 ENDs and 1 IP layer.. Subject: redirecting the standard output Subject: Re: MVME 2604 and PPCBUG and test routines Subject: redirecting the standard output to different std outputs? Subject: elftobin gives error for vxWorks_rom Subject: Re: US-CA-Sr Embedded Software Developer Subject: INCLUDE options for rebuilding kernel Subject: Re: US-CA-Sr Embedded Software Developer Subject: Changing ld's parameters to abort script Subject: Re: US-CA-Sr Embedded Software Developer Subject: Re: redirecting the standard output to different std outputs? Subject: Re: freebsd cross compiler Subject: Re: redirecting the standard output Subject: Re: Changing ld's parameters to abort script Subject: Re: redirecting the standard output Subject: Re: send() exception Subject: Linking .a into the .out files Subject: Re: Linking .a into the .out files Subject: nfsExport of CDROM Subject: How do I send a raw Ethernet packet? Subject: Re: elftobin gives error for vxWorks_rom Subject: Re: redirecting the standard output to different std outputs? Subject: Re: -fvolatile Subject: Experiences with Tornado AE Subject: Booting VxWorks over the network on a PC Subject: re: Mounting ATA cdrom on pentium target Subject: Re: redirecting the standard output Subject: Re: Debuging BSP Subject: JPEG for VxWorks Subject: Re: Linking .a into the .out files Subject: Re: redirecting the standard output Subject: Re: redirecting the standard output Subject: Re: redirecting the standard output Subject: looking for compiler Subject: Re: redirecting the standard output Subject: Optimized compiler for x86 (PentiumPro) under VxWorks Subject: Re: Linking .a into the .out files Subject: Re: redirecting the standard output Subject: Re: redirecting the standard output Subject: Re: Optimized compiler for x86 (PentiumPro) under VxWorks Subject: Has anyone done any developing for LXE hand held terminals? Subject: Re: Booting VxWorks over the network on a PC Subject: Re: JPEG for VxWorks Subject: Triggering 'abort script' option Subject: Re: redirecting the standard output Subject: Re: redirecting the standard output Subject: Re: Triggering 'abort script' option Subject: Re: Optimized compiler for x86 (PentiumPro) under VxWorks Subject: Re: JPEG for VxWorks Subject: Re: redirecting the standard output Subject: Re: lkup() and system hangs Subject: STL for VxWorks Subject: STL for VxWorks Subject: Re: Green Hills MULTI IDE for VxWorks Subject: Re: lkup() and system hangs Subject: MPIC Spurious Interrupt Subject: Question on loading multiple object modules during runtime Subject: Re: STL for VxWorks Subject: ftpCommand waits Subject: ftpCommand waits Subject: e_flags and MIPS details on why Subject: Re: Question on loading multiple object modules during runtime Subject: Re: Question on loading multiple object modules during runtime Subject: Re: RPC under VxWorks Subject: Re: Booting VxWorks over the network on a PC Subject: Re: Green Hills MULTI IDE for VxWorks Subject: Re: Green Hills MULTI IDE for VxWorks Subject: Network initialization problem Subject: Can't mount volume - Help! Subject: Using Instruction and Data Cache on 8260 Subject: Re: Using Instruction and Data Cache on 8260 Subject: Dynamic module loading and source level debugging Subject: VxWorks5.4 vs WinCE 3.0? Subject: Re: redirecting the standard output Subject: Re: STL for VxWorks Subject: Re: sockets: aborting an accept() call Subject: exception 1792? Subject: undelete for DosFs2? Subject: Re: redirecting the standard output Subject: Des21143 problem Subject: Finding out which piece of code modified a memory location ? Subject: Problem with character input in host shell Subject: vxWorks 5.4 and GDB 5.0 Subject: Inscrease memory for target Subject: Re: Problem with character input in host shell Subject: Re: Finding out which piece of code modified a memory location ? Subject: Re: Des21143 problem Subject: Socket on VxSim Subject: Re: Increase memory for target Subject: Re: redirecting the standard output Subject: Shared Memory Network on CPCI Subject: Have anyone successfully run TAO (CORBA) on vxworks Subject: RE: Shared Memory Network on CPCI Subject: Shared Memory Network on CPCI Subject: END driver Template.c, is it good? Subject: Re: Shared Memory Network on CPCI Subject: threads Subject: MCP750 Compact PCI Interrupt hook problem Subject: Does ppp daemon exist in vxworks? Subject: Re: MCP750 Compact PCI Interrupt hook problem Subject: Re: 2 ENDs and 1 IP layer.. Subject: I want to have NAT. Subject: Re: Optimized compiler for x86 (PentiumPro) under VxWorks Subject: If install Tornado 2 on Widnows without the patch file for Windows2000 Subject: smart way to wait? Subject: Re: If install Tornado 2 on Widnows without the patch file for Windows2000 Subject: Sandisk under vxWorks Subject: Re: smart way to wait? Subject: Re: If install Tornado 2 on Widnows without the patch file for Windows2000 Subject: Performance issues with FCC on 8260... Subject: Question on PCI to ISA Bridge PC87200 VxWorks driver Subject: Re: redirecting the standard output to different std outputs? Subject: Performance hit on a 8260 based system when using ATM... Subject: Re: PKZIP for vxworks? Subject: Multi-POP BCC mail notification Subject: Multi-POP BCC mail notification Subject: Multi-POP BCC mail notification Subject: Multi-POP BCC mail notification Subject: Re: Finding out which piece of code modified a memory location ? Subject: Multi-POP BCC mail notification Subject: Multi-POP BCC mail notification Subject: Dec 21143 problem in full duplex mode Subject: Re: smart way to wait? Subject: Bounce Filter Tuning Subject: Re: Dec 21143 problem in full duplex mode Subject: Network initialization for Intel 82559ER Subject: Re: Performance hit on a 8260 based system when using ATM... Subject: 2 ENDs and 1 IP layer.. Subject: Re: Using Instruction and Data Cache on 8260 Subject: Where can I download the patch file of Tornado 2 for Windows2000 Subject: Re: Where can I download the patch file of Tornado 2 for Windows2000 Subject: Re: redirecting the standard output to different std outputs? Subject: Re: redirecting the standard output Subject: Green Hills MULTI IDE for VxWorks Subject: Re: redirecting the standard output Subject: how to use rBuffCreate Subject: Re: Using Instruction and Data Cache on 8260 Subject: Socket allocation problems on VxWorks 5.3 using SVME179 DY4 card Subject: Socket error on VxWorks - PPC DY4 SVME179 card Subject: Re: Socket error on VxWorks - PPC DY4 SVME179 card Subject: multi-threaded application and socket Subject: Re: PKZIP for vxworks? Subject: Large disk partition and format Subject: Tornado 2.0.1 for ARM README.TXT? Subject: Socket timeouts and number of sockets Subject: Re: Shared Memory Network on CPCI Subject: Changing telnetd port? Subject: Task getting suspended under debugger Subject: Re: Socket error on VxWorks - PPC DY4 SVME179 card Subject: RE: Task getting suspended under debugger Subject: Re: Tornado 2.0.1 for ARM README.TXT? Subject: Re: Changing telnetd port? Subject: Has bug in basic_string been fixed? Subject: Re: Sandisk under vxWorks Subject: Re: freebsd cross compiler Subject: How to setup a Software Interrupt? Subject: Structures without holes? Subject: Re: Structures without holes? Subject: Re: Finding out which piece of code modified a memory location ? Subject: Function backtrace Subject: New MCP750s Don't Run VxWorks Boot Code Subject: cannot rx UDP broadcast messages after binding Subject: workQPanic Subject: Re: Finding out which piece of code modified a memory location ? Subject: Re: Task getting suspended under debugger Subject: Re: Finding out which piece of code modified a memory location ? Subject: Re: workQPanic Subject: Conversion from 1.0.1 to 2.0 Subject: compiler option Subject: Re: Task getting suspended under debugger Subject: Re: Finding out which piece of code modified a memory location ? Subject: Re: Function backtrace Subject: Is anyone using the dec21x4xEnd driver without Serial ROM? Subject: Semaphore loss after interrupt Subject: Re: compiler option Subject: FREE DOWNLOAD - www.vanethian.com - www.tomatic.it 102287 Subject: Re: Structures without holes? Subject: Re: compiler option Subject: create directory in the file system in vxworks Subject: Re: cannot rx UDP broadcast messages after binding Subject: Version Release History and Safety-Critical Applications Subject: Re: Structures without holes? Subject: Re: Function backtrace Subject: Re: Dynamic module loading and source level debugging Subject: 860 BSP Development Subject: IDT 32332 and EPI Majic Subject: Re: 860 BSP Development Subject: Re: 860 BSP Development Subject: If Tornado2 PowerPC8245 is the same as PowerPC860 Subject: vxworks nfsMount client side attributes Subject: Re: create directory in the file system in vxworks Subject: Re: create directory in the file system in vxworks Subject: Detect open File Subject: Floating point funktions missing Subject: 3c905C Ethernet on pcPentium Subject: DHCP Configuration error Subject: FTP hangs around during image download Subject: Tornado2 MIPS ccaXXX temporary files issue Subject: VxWorks and Windows Subject: Re: Tornado2 MIPS ccaXXX temporary files issue Subject: Network Protocol Toolkit (NPT) Subject: Ethernet Source code Subject: dcacheDevTune parameter Subject: END driver for intel/dec 21143 ethernet chip Subject: Panicked Sparc resulting from an orphan? Subject: Re: Conversion from 1.0.1 to 2.0 Subject: Re: VxWorks and Windows Subject: Re: Ethernet Source code Subject: Re: If Tornado2 PowerPC8245 is the same as PowerPC860 Subject: vxWorks and PC/104 Subject: Re: PKZIP for vxworks? Subject: Encryption library for vxWorks ? Subject: Looking for a methodology (book or article ) describing processor selection/sizing (Clock Rate/MIPS, Memory size) at early s/w design stage Subject: Page fault Subject: Re: Encryption library for vxWorks ? Subject: Re: PKZIP for vxworks? Subject: Re: VxWorks and Windows Subject: how can i boot a pentium (pc) with vxworks from a floppy Subject: Re: DHCP Configuration error Subject: Re: Performance issues with FCC on 8260... Subject: Help with disabling Multicast Subject: Re: Floating point funktions missing Subject: triggering lib question Subject: Re: Floating point funktions missing Subject: Help me ............... Subject: Re: Serial I/O query Subject: Re: PKZIP for vxworks? Subject: serial port access in MBX860 Subject: help me.................. Subject: Re: Page fault Subject: wtxtcl problem (bgerror) Subject: Re: cannot rx UDP broadcast messages after binding Subject: Re: Encryption library for vxWorks ? Subject: Re: workQPanic Subject: Re: DHCP Configuration error Subject: Synchronize symbol table Subject: Re: PKZIP for vxworks? Subject: PPP Startup error Subject: Re: workQPanic Subject: Re: PKZIP for vxworks? Subject: RE: Help me ............... Subject: Corba Support in VxWorks AE Subject: Re: Synchronize symbol table Subject: Writable non readable memory Subject: Re: cannot rx UDP broadcast messages after binding Subject: Re: Corba Support in VxWorks AE Subject: Re: Synchronize symbol table Subject: Re: Tornado 2.0.1 for ARM README.TXT? Subject: Re: Tornado 2.0.1 for ARM README.TXT? Subject: intel 82562ET nic Subject: VxWorks Questions Subject: Q about 21143&971 Subject: Re: Version Release History and Safety-Critical Applications Subject: Re: Q about 21143&971 Subject: Re: workQPanic Subject: Re: workQPanic Subject: Re: SCSI ZIP drive Subject: intConnect Subject: PerformancePack -ProfilerScope and MemScope Subject: ipAttache() Subject: Re: intConnect Subject: Re: intConnect Subject: Re: PKZIP for vxworks? Subject: Timer Library for VxWorks ! Subject: Events in VxWorks !! Subject: Archive Subject: Re: Events in VxWorks !! Subject: Problem on DHCP Relay Agent Subject: Accessing Local drive with VxSim Subject: Re: Accessing Local drive with VxSim Subject: Re: Events in VxWorks !! Subject: Viewing info after memPartFree error Subject: Re: Ethernet Source code Subject: Re: Network Protocol Toolkit (NPT) Subject: Re: Archive Subject: 2 ENDs below mux ...again Subject: Benchmarking studies for VxWorks? Subject: Re: Events in VxWorks !! Subject: Read XML file from Target Agent Subject: StrongArm BSP Subject: Re: intConnect Subject: ethernet driver Q.... Subject: CORBA security Subject: bootpParamsGet for vxWorks 5.4 does not work? Subject: DE520 adapter and AlphaVME 5 Subject: Re: Viewing info after memPartFree error Subject: Re: vxWorks and PC/104 Subject: Re: how can i boot a pentium (pc) with vxworks from a floppy Subject: RE: bootpParamsGet for vxWorks 5.4 does not work? Subject: bootpParamsGet for vxWorks 5.4 does not work? Subject: serial port access in MBX860 Subject: Re: workQPanic Subject: Serial port access Subject: WindView 2.0 under Solaris 2.4 Subject: Re: Events in VxWorks !! Subject: Re: Events in VxWorks !! Subject: makeSymTbl for Linux Subject: Re: Timer Library for VxWorks ! Subject: Re: Synchronize symbol table Subject: how to load SCC2 and SCC3 at the same time? Subject: Arm support? Subject: Re: Viewing info after memPartFree error Subject: Getting core dump after a crash Subject: Getting the core dump Subject: Re: Synchronize symbol table Subject: Re: Synchronize symbol table Subject: Re: makeSymTbl for Linux Subject: Re: Getting core dump after a crash Subject: DosFs2 1024 byte sector Subject: PPC and data cache Subject: Some Querry on File Access and Network Connection using Vxsim Subject: Need help in FTP over PPP Subject: bootLoadModule implementation Subject: Re: ethernet driver Q.... Subject: Changing IP Parameter 'on the fly' Subject: Re: Need help in FTP over PPP Subject: Re: Changing IP Parameter 'on the fly' Subject: Re: Arm support? Subject: Memory Partion Usage in VxWorks ! Subject: writing PCI device drivers Subject: Re: Synchronize symbol table Subject: Re: VxWorks memory error when closing ADA file Subject: Re: PPC and data cache Subject: Re: Viewing info after memPartFree error Subject: Re: makeSymTbl for Linux Subject: Re: workQPanic Subject: Building Cygnus GNU tools for VxWorks? Subject: cca?: warnings referencing a temp file..... Subject: Re: If Tornado2 PowerPC8245 is the same as PowerPC860 Subject: Re: VxWorks memory error when closing ADA file Subject: Re: If Tornado2 PowerPC8245 is the same as PowerPC860 Subject: serial port driver for TI TL16C752B chip Subject: Re: Viewing info after memPartFree error Subject: memPartInfoGet Subject: making changes in prjConfig? Subject: Re: Free flash file system for vxworks? Subject: Re: making changes in prjConfig? Subject: Re: StrongArm BSP Subject: Re: PPC and data cache Subject: tffs Subject: Assabet and vxworks Subject: Re: Free flash file system for vxworks? Subject: Re: Building Cygnus GNU tools for VxWorks? Subject: MIPS / IDTS134 /BCM3350 question Subject: Re: cca?: warnings referencing a temp file..... Subject: MIPS / IDTS134 /BCM3350 question Subject: select and taskdelete Subject: Re: making changes in prjConfig? Subject: memory alignment Subject: Re: select and taskdelete Subject: Timer and Semaphoretake Subject: Re: Viewing info after memPartFree error Subject: Re: Building Cygnus GNU tools for VxWorks? Subject: help please Subject: future of java Subject: strerror Subject: Re: Large disk partition and format Subject: Re: Free flash file system for vxworks? Subject: Re: strerror Subject: Re: strerror Subject: daylight saving issue in vxworks (tornado) Subject: re: daylight saving issue in vxworks (tornado) Subject: Target server, wdbrpc, vxWorks_rom: which core file? Subject: Re: PPC and data cache Subject: Re: making changes in prjConfig? Subject: Re: memory alignment Subject: Preprocessor problem on 2000 Subject: PCMCIA-ISDN-Cards under VxWorks Subject: Shell task status Subject: Re: Newbie needs help with embedded SNMP agent Subject: Vxworks Subject: Re: strerror Subject: Porting C code Subject: what to do in sysHwInit? Subject: Re: PPC and data cache Subject: variable couldn't pass into function Subject: People with DEC21143 or MII Subject: Re: Target server, wdbrpc, vxWorks_rom: which core file? Subject: Re: strerror Subject: scc2 Subject: Re: PPC and data cache Subject: re: Vxworks Subject: re: Vxworks Subject: filesystem query Subject: ESTMDPPro ethernet adress Subject: Events in VxWorks! Subject: VXWORKS : Modem connectivity Subject: Re: Events in VxWorks! Subject: Re: Events in VxWorks! Subject: Serial Port Subject: Magneto Optical Disks Subject: Re: future of java Subject: Re: bootpParamsGet for vxWorks 5.4 does not work? Subject: Re: what to do in sysHwInit? Subject: VxWorks TSFS and disk copy Subject: List News Updates Subject: Re: Porting C code Subject: Re: Vxworks Subject: Re: scc2 Subject: Re: Serial Port Subject: Re: Free flash file system for vxworks? Subject: Re: future of java Subject: Re: Target server, wdbrpc, vxWorks_rom: which core file? Subject: Re: future of java Subject: Re: Shell task status Subject: BSP design -- Cache / SDRAM-Burst problem on MPC823e CPU Subject: Re: future of java Subject: RE: Some Querry on File Access and Network Connection using Vxsim Subject: RE: Vxworks Subject: RE: select and taskdelete Subject: RE: Serial port access Subject: Check ethernet link OK? Subject: RE: Serial port access Subject: RE: Serial port access Subject: Tornado Subject: RE: Vxworks Subject: Re: Tornado Subject: Re: Speedup games, programs and get more FREE RAM Subject: Re: Tornado Subject: RE: Tornado Subject: Intel StrataFlash driver? Subject: Re: Handling large UDP message Subject: how to pass variable to C function Subject: Dumping the core image of vxWorks. Subject: Interrupt Stack Subject: job in Montreal (PCI device drivers) Subject: RE: Serial port access Subject: Performance issues with FCC on 8260... Subject: RE: Performance issues with FCC on 8260... Subject: Interrupt Application Subject: Anyone got a Sandpoint VxWorks bootstrap image? Subject: Re: 860 BSP Development Subject: Re: If Tornado2 PowerPC8245 is the same as PowerPC860 Subject: T2.0 BSP development Subject: re: Vxworks Subject: Interrupt Application Questions Subject: Re: Performance issues with FCC on 8260... Subject: Re: T2.0 BSP development Subject: Regarding offset for ideDevCreate Subject: mcp750 raven timer Subject: Vectorcast - Unit Level Testing Subject: Re: T2.0 BSP development Subject: mv5100 com2 bit diddling? Subject: POSIX timers Subject: Re: mv5100 com2 bit diddling? Subject: Re: Events in VxWorks! Subject: Opportunity Subject: Re: Tornado Subject: Re: Interrupt Application Questions Subject: RE: Subject: Re: Handling large UDP message Subject: Re: Handling large UDP message Subject: vxWorks boot hangs on MCP750 Subject: Re: how to pass variable to C function Subject: Re: Dumping the core image of vxWorks. Subject: Re: Handling large UDP message Subject: Variation in clock_gettime() Subject: strip and hook debug symbol table Subject: Re: Variation in clock_gettime() Subject: Tornado(Dead Task) Subject: Re: Tornado(Dead Task) Subject: Re: Tornado(Dead Task) Subject: Re: Tornado(Dead Task) Subject: Lynx Subject: RE: Tornado(Dead Task) Subject: AW: Tornado(Dead Task) Subject: Need help using symbios 53c895a SCSI controller Subject: intUnConnect() Subject: Re: intUnConnect() Subject: CPM ethernet on MPC 8xx Subject: re: Tornado(Dead Task) Subject: Tornado(Dead Task) (02-Mai-2001 13:40) Subject: Newbie O.S. compatibilty ques... Subject: Re: CPM ethernet on MPC 8xx Subject: loadModule and unload Subject: Zinc and memory Subject: CPU Utilization and Memory Usage Subject: Re: POSIX timers Subject: Re: Tornado(Dead Task) Subject: Re: future of java Subject: How to get variable from wind web server using java applet? Subject: Re: intUnConnect() Subject: Re: vxWorks boot hangs on MCP750 Subject: tornado I launcher problem Subject: Truetime VME-SG2 Subject: Could not enable second serial port of MBX860 Subject: Re: loadModule and unload Subject: Re: Could not enable second serial port of MBX860 Subject: ads860 bootrom_res Subject: TFFS in vxWorks Subject: Shared Memory Network Gateway Problems Subject: Re: Could not enable second serial port of MBX860 Subject: Re: StrongArm BSP Subject: Tornado 2.0 on Solaris dumps core, hangs X server Subject: Re: loadModule and unload Subject: TFTP implementation in VxWorks Subject: ntPassFsLib Subject: GateD porting to VxWorks Subject: Re: ntPassFsLib Subject: SNMP with Two End Devices Subject: VXSim prototyping Subject: Re: ntPassFsLib Subject: Re: ntPassFsLib Subject: MCP750 & MCPN750 boards for SALE!! Subject: Re: ntPassFsLib Subject: Re: TFFS in vxWorks Subject: Re: future of java Subject: Re: ntPassFsLib Subject: Boot of vxworks Subject: Booting over network - problem Subject: Re: Booting over network - problem Subject: Re: Booting over network - problem Subject: Send Magic Packet Subject: [Q] two endSend() for one sendto() Subject: Re: Booting over network - problem Subject: Queries on mbuf (memory buffers) Subject: logLib Subject: RE: Boot of vxworks Subject: RE: ads860 bootrom_res Subject: Re: logLib Subject: Function of itab.s ? Subject: Re: future of java Subject: System Mode Debugging Problem Subject: a question of busNo, devNo, funcNo of PCI bus. Subject: RE: logLib Subject: symbols in VxWorks image Subject: Re: loadModule and unload Subject: Re: a question of busNo, devNo, funcNo of PCI bus. Subject: Re: loadModule and unload Subject: scripts Subject: redundant declarations in Tornado2 x86-win32 headerfiles Subject: Re: CPU Utilization and Memory Usage Subject: Challenging opportunities in the Embedded world 's Subject: Re: help please Subject: Re: System Mode Debugging Problem Subject: Re: ntPassFsLib Subject: Re: VXSim prototyping Subject: Re: POSIX timers Subject: queries on pjWorks3.1 and object file compression Subject: Re: a question of busNo, devNo, funcNo of PCI bus. Subject: Verilog Traning Center (Santa Clara, CA) Subject: Re: Challenging opportunities in the Embedded world 's Subject: Re: Zinc and memory Subject: Re: System Mode Debugging Problem Subject: SNMP CMIP agents & managers Subject: Y this error while building the project - Pls. help Subject: what things to include when compiling c++ file Subject: PowerPC Mem dump analysis on Tornado1/5.3.1, Tornado2 Subject: Re: what things to include when compiling c++ file Subject: Re: Boot of vxworks with DHCP Subject: running multiple vxsims on Win2000 Subject: Using the standalone Diab C/C++ with MVME5100 Board Subject: Re: vxWorks 5.4 and GDB 5.0 Subject: Problem with animation usign Rhapsody and VxWorks Subject: HELP!!!! Subject: PowerPC 750->755 migration Subject: plug PCI card into MCP750 - how ? Subject: Re: running multiple vxsims on Win2000 Subject: trace route Subject: Re: Could not enable second serial port of MBX860 Subject: Creating DHCP Client for VxWorks Subject: Re: Y this error while building the project - Pls. help Subject: Re: System Mode Debugging Problem Subject: registering own software interrupts Subject: Queries on mbuf (memory buffers) Subject: RE: Subject: Queries on mbuf (memory buffers) Subject: big files via TCP network sending Subject: IP aliasing (running two subnets on one Ethernet NIC) Subject: ipFilter in vxWorks Subject: Re: Variation in clock_gettime() Subject: Re: Shared Memory Network Gateway Problems Subject: VxWorks and PPMC750 Subject: MPC7400 & PC/104+ & Vxworks Subject: ksleep() blocking the other parts of netTask Subject: Re: what things to include when compiling c++ file Subject: Re: big files via TCP network sending Subject: x86 boot with serial WDB and TSFS Subject: Re: Variation in clock_gettime() Subject: DHCP Vendor Specific paremeter Subject: vxDecGet() & vxDecSet() information Subject: Problem with sntpcTimeGet function Subject: VxWorks Sockets Subject: Re: Shared Memory Network Gateway Problems Subject: ttcp for vxworks? Subject: RE: Queries on mbuf (memory buffers) Subject: Enabling Second serial Port of MBX860-It's done ,Here is the Details Subject: Enabling Second serial Port of MBX860-It's done ,Here is the Details Subject: Re: Y this error while building the project - Pls. help Subject: dosFs recognization.... Subject: Re: what things to include when compiling c++ file Subject: Threads and C++ destructors Subject: Re: Threads and C++ destructors Subject: Re: Threads and C++ destructors Subject: Re: Threads and C++ destructors Subject: Re: a question of busNo, devNo, funcNo of PCI bus. Subject: Re: Threads and C++ destructors Subject: Query Related to time routines Subject: changing sysclockrate in the BSP config dialog Subject: elftobin problems? Subject: Re: Threads and C++ destructors Subject: Re: what things to include when compiling c++ file Subject: Re: vxDecGet() & vxDecSet() information Subject: Re: Query Related to time routines Subject: RE: Query Related to time routines Subject: Re: vxDecGet() & vxDecSet() information Subject: WindNet SNMPv1/v2c Subject: RE: Query Related to time routines Subject: SingleStep Flash Programmer Hangs Subject: Re: ksleep() blocking the other parts of netTask Subject: build bootrom bigger than 1M for powerpc Subject: Error in boot system Subject: RE: build bootrom bigger than 1M for powerpc Subject: Load/Executing a program/function Subject: Re: Socket coding samples.. Subject: Does someone use the dec21x40End driver? Subject: Alignment Compiler Option In MPC860 Subject: Re: Socket coding samples.. Subject: Re: Load/Executing a program/function Subject: Re: Socket coding samples.. Subject: serial realization Subject: Re: elftobin problems? Subject: serial realization(question!) Subject: Re: elftobin problems? Subject: Re: x86 boot with serial WDB and TSFS Subject: Re: VxWorks Sockets Subject: Re: Socket coding samples.. Subject: Problems with virtual console Subject: Re: build bootrom bigger than 1M for powerpc Subject: Re: elftobin problems? Subject: PPP from NT to vxworks Subject: Re: freebsd cross compiler Subject: Re: Error in boot system Subject: Re: Threads and C++ destructors Subject: MVME5100 with Altivec Subject: Re: Threads and C++ destructors Subject: Re: Threads and C++ destructors Subject: target server doesn't connect. Please HELP!!! Subject: How to dump local variables using event point? Subject: Re: PPP from NT to vxworks Subject: Re: MVME5100 with Altivec Subject: OR0 for AM29LV800B Flash ? Subject: bind() problem... Subject: Re: Alignment Compiler Option In MPC860 Subject: Re: VxWorks Sockets Subject: Re: Error in boot system Subject: Re: freebsd cross compiler Subject: Re: OR0 for AM29LV800B Flash ? Subject: Reg. DHCP Subject: Swing Subject: Re: Newbie needs help with embedded SNMP agent Subject: How to sleep in vxworks? Subject: Re: freebsd cross compiler Subject: sysHwInit Subject: Re: How to sleep in vxworks? Subject: Re: Does someone use the dec21x40End driver? Subject: MCP750 Boards on Sale Due to Bankruptcy Subject: sample programs for practice Subject: Re: Threads and C++ destructors Subject: Re: PPP from NT to vxworks Subject: Re: bind() problem... Subject: Re: bind() problem... Subject: routing of PPP interface Subject: Re: PPP from NT to vxworks Subject: Re: Error in boot system Subject: Re: sysHwInit Subject: 10/100baseT ethernet controller without PCI bus. Subject: Drivers for BT848? Subject: Re: bind() problem... Subject: floating problems Subject: Re: target server doesn't connect. Please HELP!!! Subject: Re: floating problems Subject: Re: floating problems Subject: Re: Reg. DHCP Subject: Re: 10/100baseT ethernet controller without PCI bus. Subject: Re: Booting over network - problem Subject: Re: Swing Subject: plug PCI card into MCP750 - how ? (re-post) Subject: Re: Newbie needs help with embedded SNMP agent Subject: Re: 10/100baseT ethernet controller without PCI bus. Subject: Re: How to sleep in vxworks? Subject: PPC 603 linking question Subject: software interrupt Subject: Re: 10/100baseT ethernet controller without PCI bus. Subject: Re: How to sleep in vxworks? Subject: Disappearing task list in VxWorks Subject: Re: software interrupt Subject: Re: PPC 603 linking question Subject: Re: floating problems Subject: > 100GB SCSI DLT Tape Drive for vxWorks Subject: > 100GB SCSI DLT Tape Drive for vxWorks Subject: Simple vxWorks-like OS Subject: Re: 10/100baseT ethernet controller without PCI bus. Subject: Re: PPC 603 linking question Subject: Re: freebsd cross compiler Subject: How use DosFs2 Lib..? Subject: Newbie question Subject: The best way to implement abort functionality Subject: Re: VxWorks Sockets Subject: Re: VxWorks Sockets Subject: Re: VxWorks and PPMC750 Subject: Re: How use DosFs2 Lib..? Subject: Re: Booting over network - problem Subject: Re: Drivers for BT848? Subject: Re: 10/100baseT ethernet controller without PCI bus. Subject: re: Disappearing task list in VxWorks Subject: Disappearing task list in VxWorks Subject: Re: Booting over network - problem Subject: duplicate IP address Subject: Re: Newbie question Subject: PPP <- > Ethernet Subject: Re: elftobin problems? Subject: Tornado 2 program initializing Error in Windows 2000. Subject: Re: Tornado 2 program initializing Error in Windows 2000. Subject: Re: Tornado 2 program initializing Error in Windows 2000. Subject: VxWorks and IXP1200 Subject: Mouse Cursor Appearance and PJWorks 3.1 Subject: how to activate a task Subject: How to make Bootable Image? Subject: TFTP help ??? Subject: Re: MVME5100 with Altivec Subject: Re: How to make Bootable Image? Subject: Missing Ticks Problem Subject: Weird dosFs problem? Subject: muxPacketDataGet and endEtherPacketDataGet Subject: muxPacketDataGet and endEtherPacketDataGet Subject: tcpdump in vxworks Subject: Re: muxPacketDataGet and endEtherPacketDataGet Subject: BSP question Subject: Re: Weird dosFs problem? Subject: Re: Missing Ticks Problem Subject: How do you get location of IP packet given pMBlk and pCookie? Subject: DHCPbind error? Subject: Re: Tornado 2 program initializing Error in Windows 2000. Subject: Re: The best way to implement abort functionality Subject: Embed Version id in vxWorks image Subject: Re: How do you get location of IP packet given pMBlk and pCookie? Subject: Re: Embed Version id in vxWorks image Subject: Re: MVME5100 with Altivec Subject: Re: sample programs for practice Subject: Re: BSP question Subject: Query on Semaphore Subject: Performance issues in message Q's Subject: TCP socket connection stucks ! Subject: C++ support Subject: netBufLib.h Subject: Re: tcpdump in vxworks Subject: Re: Query on Semaphore Subject: re: Weird dosFs problem? Subject: PPP hook add function Subject: Job opportunity in Montreal Subject: Flash File System - overview required Subject: Re: Query on Semaphore Subject: IP packet routing - filtering on packet source Subject: DataCell Snapper 24 on Cetia/Thales Subject: Re: Query on Semaphore Subject: PMC slots on MCP750 Subject: 100 base TX speed and PPC's Subject: open() on NT's VxSim Subject: Re: open() on NT's VxSim Subject: Re: Performance issues in message Q's Subject: Re: open() on NT's VxSim Subject: absolute linking to external VxWorks Subject: Re: absolute linking to external VxWorks Subject: Re: Query on Semaphore Subject: using ls() from PC ftp client Subject: [Q] Difference MPC860 Vxworks and MPC750??? Subject: Re: tcpdump in vxworks Subject: Re: [Q] Difference MPC860 Vxworks and MPC750??? Subject: Re: open() on NT's VxSim Subject: Re: PMC slots on MCP750 Subject: about loadModule() Subject: Re: C++ support Subject: TrueFFS overview and experiences required Subject: windows explorer And Tornado conflict Subject: Re: PMC slots on MCP750 Subject: RE: windows explorer And Tornado conflict Subject: Re: about loadModule() Subject: Re: tcpdump in vxworks Subject: Re: tcpdump in vxworks Subject: LOAD_STRINGs for multiple NICs Subject: LOAD_STRINGs for multiple NICS again Subject: Re: LOAD_STRINGs for multiple NICS again Subject: Re: VxWorks Sockets Subject: VI Editor Subject: HTML interface to replace HTMLworks Subject: Modem control? Subject: Re: about loadModule() Subject: Re: Re: OR0 for AM29LV800B Flash ? Subject: Please include me in VxWorks mailing list! Subject: Re: VxWorks and IXP1200 Subject: Mailbox Bus Error Subject: Re: VxWorks and IXP1200 Subject: InoculateIT detected the (Win95/Happy99.Worm) virus in Mailbox (P Subject: InoculateIT detected the (Win95/Happy99.Worm) virus in Mailbox (P Subject: Re: windows explorer And Tornado conflict Subject: Re: tcpdump in vxworks Subject: Re: tcpdump in vxworks Subject: Re: netBufLib.h Subject: Please include me in VxWorks mailing list! Subject: END and buffer management Subject: Re: PPP from NT to vxworks Subject: Re: VI Editor Subject: Simple vxWorks-like OS Subject: stack interpretation Subject: memDrv not recognized Subject: taskSpawn of member function of an object Subject: Re: stack interpretation Subject: Re: taskSpawn of member function of an object Subject: Re: taskSpawn of member function of an object Subject: hanging in serial I/O Subject: FORCE CPU-30BE/16-4 to sell. Subject: Changing c++ compilers: from GNU to Green Hills Subject: loadModule and unldByModuleId Subject: tExcTask Subject: Re: TFTP help ??? Subject: Re: Error in boot system Subject: Re: stack interpretation Subject: Re: memDrv not recognized Subject: HDLC Controller (Dallas) Subject: Determining "task" cpu useage [E.g "top"] Subject: Re: memDrv not recognized Subject: Re: Determining "task" cpu useage [E.g "top"] Subject: help:WDB problem (WTX Error 0x10197 (EXCHANGE_TIMEOUT)) Subject: problem with serial ports Subject: Re: taskSpawn of member function of an object Subject: Re: taskSpawn of member function of an object Subject: event implementaion in Vxworks Subject: Influencing scheduler for preferential execution of tasks ... Subject: Re: event implementaion in Vxworks Subject: how to download a file to a powe pc Subject: re: Influencing scheduler for preferential execution of tasks ... Subject: Re: Determining "task" cpu useage [E.g "top"] Subject: Re: event implementaion in Vxworks Subject: Re: Influencing scheduler for preferential execution of tasks ... Subject: re: Influencing scheduler for preferential execution of tasks ... Subject: Porting C code for Solaris to VxWorks Subject: re: Influencing scheduler for preferential execution of tasks ... Subject: BSP questions- int vector and remap Subject: Re: Determining "task" cpu useage [E.g "top"] Subject: Is VxWorks my best choice? Subject: VxWorks DOS file system corruption? Subject: Re: tExcTask Subject: Re: Influencing scheduler for preferential execution of tasks ... Subject: Re: how to activate a task Subject: mkbootAta() on CompactFlash Subject: Re: mkbootAta() on CompactFlash Subject: Re: BSP questions- int vector and remap Subject: Re: Porting C code for Solaris to VxWorks Subject: Re: how to download a file to a powe pc Subject: Re: Changing c++ compilers: from GNU to Green Hills Subject: Re: HTML interface to replace HTMLworks Subject: Re: Determining "task" cpu useage [E.g "top"] Subject: RE: Influencing scheduler for preferential execution of tasks ... Subject: muxDevLoad Subject: Re: hanging in serial I/O Subject: Re: taskSpawn of member function of an object Subject: Combining debug shell with normal commands Subject: Zinc and Listbox Subject: PPC823 and SPI Subject: Re: muxDevLoad Subject: Re: VxWorks DOS file system corruption? Subject: Re: BSP questions- int vector and remap Subject: Re: vxWorks 5.4 and GDB 5.0 Subject: Re: Influencing scheduler for preferential execution of tasks ... Subject: Re: Porting C code for Solaris to VxWorks Subject: Re: VxWorks DOS file system corruption? Subject: Re: event implementaion in Vxworks Subject: ftp file size Subject: Tornado 2.0 + va_list + PPC604 Subject: Invalid C++ Constructors/Destructors Strategy Subject: re: Influencing scheduler for preferential execution of tasks Subject: Re: HTML interface to replace HTMLworks Subject: html Subject: Re: HTML interface to replace HTMLworks Subject: Re: vxWorks 5.4 and GDB 5.0 Subject: newbie question Subject: Multiple Message Receiving Tasks Subject: struct WindTcb's taskTick member question Subject: Re: Multiple Message Receiving Tasks Subject: Re: struct WindTcb's taskTick member question Subject: How do I resolve: "Undefined symbol: __builtin_new" ??? Subject: Re: Invalid C++ Constructors/Destructors Strategy Subject: newbie ??s on scheduling policy Subject: help! anyone still have 5.02 around somewhere? Subject: Use of serial port for both tgtShell & for input Subject: Re: How do I resolve: "Undefined symbol: __builtin_new" ??? Subject: VxNetStack Job/Kernel optimization Subject: Re: BSP questions- int vector and remap Subject: Re: BSP questions- int vector and remap Subject: Re: struct WindTcb's taskTick member question Subject: Re: newbie ??s on scheduling policy Subject: Re: Influencing scheduler for preferential execution of tasks Subject: Re: VxNetStack Job/Kernel optimization Subject: RE: VxNetStack Job/Kernel optimization Subject: VxMP with dual Pentium Subject: UCD/CMU ?? Subject: RE: RE: Influencing scheduler for preferential execution of tasks Subject: snmp ??? Subject: Re: Influencing scheduler for preferential execution of tasks Subject: Re: taskSpawn of member function of an object Subject: Re: loadModule and unldByModuleId Subject: Re: Porting C code for Solaris to VxWorks ------------------------------------------------------- Newsgroups: comp.os.vxworks Subject: tffs on PPMC750 Date: Wed, 21 Feb 2001 12:58:47 +0530 From: "Venkatesh JS" Organization: Motorola Message-ID: <96vpvg$hk2$1@newshost.mot.com> hi. Has any one tried including TFFS component on PPMC750 board ? I have MTD and socket layer code for AMD series NOR flash devices which holds good for flash device on PPMC750 card(Am29DL323C). This MTD uses Common Flash Interface(CFI) to program the flash. We can get device and manufacturer details from flash device by sending some command sequences on some specified address(Given in Command defination tables in AMD product literature). But my code fails to get this detail. After writing command sequences , when i try to read the result i am not able to get any valid information. My MTD code uses this logic to write command sequence: WriteCmdSequence(FLASH_BASE_ADRS,0x00aa00aa, 0x555) { adrs = FLASH_BASE_ADRS + 8 * (0x555); *adrs = 0x00aa00aa; } Here 0x00aa00aa is command sequence defined by AMD and 0x555 is address specified by AMD product guide. I have given flash base address as 0xfff00000. Does any one know how solve this problem ? regds, venkat --------------------------- Newsgroups: comp.os.vxworks Subject: using startup script Date: Wed, 21 Feb 2001 07:52:38 GMT From: a.betsche@steinbichler (Andi Betsche) Organization: Newsfeeds.com http://www.newsfeeds.com 73,000+ UNCENSORED Newsgroups. Message-ID: <3a9373c5.88338754@news.ronet.de> Hello everybody, I have a 'silly' problem using the startup script under vxWorks 5.4 with a motorolla mvme2700 cpu. The cpu starts but don't executes the startup script. I initialise a local harddisk with dosFs and want to start a startup script on this harddisk. I configured the system to use a startup script by including "development tool components - target shell components - shell startup script". The system starts and says "Unable to open startup script /sd0/startme". I find out that the systems points to a directory on my Tornado - host (which I don't use during booting). If I change the directory in target shell to "/sd0" it shows that the startup script is existing. If I use a startup script located on my host this is executed, but thats not what I want to do. Hope anyone can help me. BOOTSEQUENCE on mvme2700 - -------------------------------------------------- auto-booting... boot device : scsi=0,0 unit number : 0 processor number : 0 host name : mr-bean file name : /sd0/vxworks inet on ethernet (e) : 192.4.1.4 host inet (h) : 192.168.2.57 gateway inet (g) : 192.4.1.4 user (u) : autoscan ftp password (pw) : ftp flags (f) : 0x8 target name (tn) : noname startup script (s) : /sd0/startme other (o) : dc Attaching to scsi device... done. Loading /sd0/vxworks...977084 Starting at 0x100000... Attached TCP/IP interface to dc unit 0 Attaching interface lo0...done Adding 2790 symbols for standalone. VxWorks Copyright 1984-1998 Wind River Systems, Inc. CPU: Motorola MVME2700 - MPC 750 VxWorks: 5.4 BSP version: 1.2/0 Creation date: Feb 19 2001 WDB: Ready. Unknown directory: /sd0 Unable to open startup script /sd0/startme - -> - -------------------------------------------------------------- this is on tornado host - -> ll WS_FTP.LOG ctdt.c ctdt.o cwData.cfg dataSegPad.o linkSyms.o partialImage.o prjConfig.o startme symTbl.c symTbl.o sysALib.o sysLib.o usrAppInit.o version.o vxIntDisconnect.o vxWorks value = 0 = 0x0 this shows the files on the vxworks target - -> cd "/sd0/" value = 0 = 0x0 - -> ll size date time name - -------- ------ ------ -------- 1165625 FEB-19-2001 12:17:38 VXWORKS 512 AUG-30-2000 16:29:38 SYS 512 AUG-30-2000 16:29:46 DATA 512 AUG-30-2000 16:29:52 LOG 512 AUG-30-2000 16:30:04 BATCH 512 AUG-30-2000 16:30:12 TEST 3314445 FEB-16-2001 13:21:42 AUTOSCAN.OUT 4922 NOV-28-2000 11:44:16 CLZCONT.HEX 512 DEC-19-2000 14:34:24 DIA 12204032 JAN-25-2001 17:52:16 STUFF.ZIP 6 FEB-16-2001 14:29:26 STARTUP.TXT 32 FEB-19-2001 11:59:12 STARTME value = 0 = 0x0 - -> - ---------------------------------------------------------------------------------- my usrAppInit() function void usrAppInit (void) { int iFd; /* filedescriptor for load file */ #ifdef USER_APPL_INIT USER_APPL_INIT; /* for backwards compatibility */ #endif /* enable scsi Auto-Config */ scsiAutoConfig(pSysScsiCtrl); /* add application specific code here */ dosFsDevInit ("/sd0/", scsiBlkDevCreate(scsiPhysDevIdGet(pSysScsiCtrl,0,0), 0, 0), NULL); cd(); cd("."); /* ? */ /* set software clock: */ getRTC(); /* install timestamp handler */ dosFsDateTimeInstall(dosFsTimestamp); } - -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! - -----== Over 80,000 Newsgroups - 16 Different Servers! =----- --------------------------- Newsgroups: comp.os.vxworks Subject: Rebuild kernel for VxSIM? Date: Wed, 21 Feb 2001 08:29:34 GMT From: "YHU" Organization: AT&T Worldnet Message-ID: Hi, I try to load a library using VxSIM and got the following errors - ------------------------------------------- - -> ld < C:/libABC.so Loading C:/libABC.so / Undefined symbols: _recvmsg fstreambase::close(void) _sendto _socket _inet_ntoa _getsockname _hostGetByAddr _gethostname _sendmsg _hostGetByName _ftruncate _recvfrom _getpeername _connect _setsockopt ofstream::ios virtual table _bind _send _recv fstreambase::fstreambase(int, char const *, int, int) _accept _listen fstreambase::open(char const *, int, int) Warning: object module may not be usable because of undefined symbols. value = 20345936 = 0x1367450 - ------------------------------- I think I need to rebuild the kernel for VxSIM. But one thing I am not sure is that VxSIM is the version VxSIM Lite. Can this build including Socket interface and C++ iostreams APIs work in VxSIM Lite? Also, what are the procedures for rebuilding this kernel? Thanks in advance! Qiumin --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Gcc 2.95.3 for VxWorks-PPC Date: Wed, 21 Feb 2001 09:13:08 GMT From: "Robin Mitra" Message-ID: References: <96qfn6$nb2$1@front2.grolier.fr> Hi, Maybe I missed the beginning of this thread, Where is gcc 2.95.3 available from? Thanks, Robin "Frédéric GARFAGNI" wrote in message news:96qfn6$nb2$1@front2.grolier.fr... > Hello, > > I've tried Gcc 2.95.3 but I meet a malloc failure when comes time to convert > binary files vxWorks_rom to Motorola format, using elfHex. The problem > diseappear when I come back to the previous Gcc version delivered by > VxWorks. > > selcompiler gcc > --------------- > ... > D:\Tornado\host\x86-win32\bin\romsize PPC -b 00200000 vxWorks_rom > vxWorks_rom: 1568(t) + 1389708(d) = 1391276 (705876 unused) > D:\Tornado\host\x86-win32\bin\elfHex -v vxWorks_rom \ > > vxWorks_rom.hex > malloc failed > make: *** [vxWorks_rom] Error 0xffffffff > make: *** Deleting file `vxWorks_rom' > > selcompiler wrs > --------------- > ... > D:\Tornado\host\x86-win32\bin\romsize PPC -b 00200000 vxWorks_rom > vxWorks_rom: 1568(t) + 1392140(d) = 1393708 (703444 unused) > D:\Tornado\host\x86-win32\bin\elfHex -v vxWorks_rom \ > > vxWorks_rom.hex > > vxWorks = 1650353 bytes > vxWorks.hex = 4181170 bytes > > > Does anyone meet the same problem ? Any idea how to break it ? > > However that may be, many thanks to Dave KORN for his work and help to > VxWorks community. > > > > Frédéric GARFAGNI > TEAMLOG > > --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Wed, 21 Feb 2001 10:34:18 GMT From: JayDee Organization: =^.^= Message-ID: References: <96l2fm$dnh$1@blackhelicopter.databasix.com> <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> Reply-To: ThatJayDee@yahoo.com On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ pacific.net.au> wrote: >> I find that an IV drip by my bed with a couple of bags of vodka = generally >> keeps me pissed through the night... >> DaveK >Oh, I'm always on the lookout for new ways to get smeshed. >Do you have to have a large knowledge of medicine to be able to set >this up? And how do I get my hands on the equipment? you can use an ultrasonic humidifier to produce ethyl alcohol vapor...breathe that shit and you'll get fucked-up, real-good best bet is to distill 100-proof vodka into pure grain alcohol then, put it in a jug with an appropriate amount of anhydrous magnesium sulfate, which removes the last traces of water ...it's the killer shit, lemme-tellya --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Wed, 21 Feb 2001 10:34:20 GMT From: JayDee Organization: =^.^= Message-ID: <=ZSTOrcE18YzTTWWZ7l3dmzn896P@4ax.com> References: <96km2l$386$1@kneejerk.databasix.com> <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> Reply-To: ThatJayDee@yahoo.com On Wed, 21 Feb 2001 17:40:27 +1100, STFGP <"goose_fp"@ pacific.net.au> wrote: >> It can interfere with ones consumption of alcohol. >If not done in the correct manner I am sure it could. So I usually = don't >take that risk, pluss if I'm ever stoned I just sit there and veg out, I >can't move at all. That's not fun at all. oh, fuck the booze...it's toxic shit, anyway... just smoke decent equatorial varieties of weed I had this shit called Rutabagah (leaves looked like rutabagah leaves) that was an Afghanistani-Columbian hybrid, and forced the females to produce pollen, which produced only female seeds ...didn't have to fuck with whacking a bunch of apical meristems --------------------------- Newsgroups: comp.os.vxworks Subject: using startup script Date: Wed, 21 Feb 2001 12:16:29 GMT From: a.betsche@steinbichler (Andi Betsche) Organization: Newsfeeds.com http://www.newsfeeds.com 73,000+ UNCENSORED Newsgroups. Message-ID: <3a93b197.104164821@news.ronet.de> Hello everybody, I have a 'silly' problem using the startup script under vxWorks 5.4 with a motorolla mvme2700 cpu. The cpu starts but don't executes the startup script. I initialise a local harddisk with dosFs and want to start a startup script on this harddisk. I configured the system to use a startup script by including "development tool components - target shell components - shell startup script". The system starts and says "Unable to open startup script /sd0/startme". I find out that the systems points to a directory on my Tornado - host (which I don't use during booting). If I change the directory in target shell to "/sd0" it shows that the startup script is existing. If I use a startup script located on my host this is executed, but thats not what I want to do. Hope anyone can help me. BOOTSEQUENCE on mvme2700 - -------------------------------------------------- auto-booting... boot device : scsi=0,0 unit number : 0 processor number : 0 host name : mr-bean file name : /sd0/vxworks inet on ethernet (e) : 192.4.1.4 host inet (h) : 192.168.2.57 gateway inet (g) : 192.4.1.4 user (u) : autoscan ftp password (pw) : ftp flags (f) : 0x8 target name (tn) : noname startup script (s) : /sd0/startme other (o) : dc Attaching to scsi device... done. Loading /sd0/vxworks...977084 Starting at 0x100000... Attached TCP/IP interface to dc unit 0 Attaching interface lo0...done Adding 2790 symbols for standalone. VxWorks Copyright 1984-1998 Wind River Systems, Inc. CPU: Motorola MVME2700 - MPC 750 VxWorks: 5.4 BSP version: 1.2/0 Creation date: Feb 19 2001 WDB: Ready. Unknown directory: /sd0 Unable to open startup script /sd0/startme - -> - -------------------------------------------------------------- this is on tornado host - -> ll WS_FTP.LOG ctdt.c ctdt.o cwData.cfg dataSegPad.o linkSyms.o partialImage.o prjConfig.o startme symTbl.c symTbl.o sysALib.o sysLib.o usrAppInit.o version.o vxIntDisconnect.o vxWorks value = 0 = 0x0 this shows the files on the vxworks target - -> cd "/sd0/" value = 0 = 0x0 - -> ll size date time name - -------- ------ ------ -------- 1165625 FEB-19-2001 12:17:38 VXWORKS 512 AUG-30-2000 16:29:38 SYS 512 AUG-30-2000 16:29:46 DATA 512 AUG-30-2000 16:29:52 LOG 512 AUG-30-2000 16:30:04 BATCH 512 AUG-30-2000 16:30:12 TEST 3314445 FEB-16-2001 13:21:42 AUTOSCAN.OUT 4922 NOV-28-2000 11:44:16 CLZCONT.HEX 512 DEC-19-2000 14:34:24 DIA 12204032 JAN-25-2001 17:52:16 STUFF.ZIP 6 FEB-16-2001 14:29:26 STARTUP.TXT 32 FEB-19-2001 11:59:12 STARTME value = 0 = 0x0 - -> - ---------------------------------------------------------------------------------- my usrAppInit() function void usrAppInit (void) { int iFd; /* filedescriptor for load file */ #ifdef USER_APPL_INIT USER_APPL_INIT; /* for backwards compatibility */ #endif /* enable scsi Auto-Config */ scsiAutoConfig(pSysScsiCtrl); /* add application specific code here */ dosFsDevInit ("/sd0/", scsiBlkDevCreate(scsiPhysDevIdGet(pSysScsiCtrl,0,0), 0, 0), NULL); cd(); cd("."); /* ? */ /* set software clock: */ getRTC(); /* install timestamp handler */ dosFsDateTimeInstall(dosFsTimestamp); } - -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! - -----== Over 80,000 Newsgroups - 16 Different Servers! =----- --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Interrupt:dc0 no carrier error Date: Wed, 21 Feb 2001 12:20:56 GMT From: a.betsche@steinbichler.de (Andi Betsche) Organization: Newsfeeds.com http://www.newsfeeds.com 73,000+ UNCENSORED Newsgroups. Message-ID: <3a93b29d.19190384@news.ronet.de> References: <96d7qr$d2$1@overload.lbl.gov> Hello, we had the same problem on an mvme2700. This problem occurs when the target is connected to a hub, switch or network card which uses auto-sensing. Fix your opposite to 100Mbit (10Mbit) and Half-duplex (not auto mode) will solve this problem. Bye. On Wed, 14 Feb 2001 10:44:31 +0530, "Vijayaraghavan Rajasekaran" wrote: >This is a multi-part message in MIME format. >--------------3DE79F3D5F5BCF58A013FCED >Content-Type: text/plain; charset=us-ascii >Content-Transfer-Encoding: 7bit > >VxWorks/Tornado > >Hi all, > we are using Vxworks with Mcp750 Bsp. During and after boot up >continuously "Interrupt:dc0 no carrier error" is displayed . This error >appears whenever host tools or any node on the lan tries to contact >target over LAN.We even Installed "Tornado-Comp-Drv-December2000 release >v070". >After that error stops appearing , but we cud not connect TELNET/FTP >servers. >Pls suggest us the remedy , ur immediate response will be highly >appreciated . > >Thanks & Regards, >R.vijayaraghavan > > > >--------------3DE79F3D5F5BCF58A013FCED >Content-Type: text/x-vcard; charset=us-ascii; > name="vijayaraghavan.raja.vcf" >Content-Transfer-Encoding: 7bit >Content-Description: Card for vijay >Content-Disposition: attachment; > filename="vijayaraghavan.raja.vcf" > >begin:vcard >n:Rajasekaran;Vijayaraghavan >x-mozilla-html:TRUE >url:www.wipro.com >org:WiproTechnologies;Embedded & Internet Access Solution >version:2.1 >email;internet:vijayaraghavan.raja@wipro.com >adr;quoted-printable:;;Wipro Ltd. No. 111, Mount Road=0D=0A Guindy=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A;Chennai;TamilNadu;600032;India >fn:R.Vijayaraghavan >end:vcard > >--------------3DE79F3D5F5BCF58A013FCED-- > - -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! - -----== Over 80,000 Newsgroups - 16 Different Servers! =----- --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Wed, 21 Feb 2001 10:01:31 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <5t1r8tolopnc2vd94h317qklrvirs7f409@4ax.com> <96km2l$386$1@kneejerk.databasix.com> <96l2fm$dnh$1@blackhelicopter.databasix.com> <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> > wrote in message <96uoe3$qr0$4@intimidator.databasix.com>... >Dave Korn wrote: > >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >> <96qpcd$fr2$1@intimidator.databasix.com>... >> >Optional Identity wrote: >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >:( DaveK >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >That's nice to know >> >> >> >> >> >> >> >> >> >> >> >> >> >> It's not cool either! >> >> >> >> >> >> > >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >> >> >> >> >> >> > >> >> >> >> >> >> Only for a short time, though. >> >> >> >> >> > >> >> >> >> >> >Well at least as long as you need to drive anywhere. >> >> >> >> >> > >> >> >> >> >> Yeah that too. >> >> >> >> > >> >> >> >> >It's an unfortunate part of life that we have to live with. >> >> >> >> >Kinda of like work, taxes and death. >> >> >> >> > >> >> >> >> And sleep. >> >> >> > >> >> >> >Sleep aint to bad when you get enough that is. >> >> >> > >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >> >> > >> >> >Well the trick to that is just to drink so much that you actually get >> >> >pisster while you sleep. Generally in a big pissup session, you don't >> >> >actually peack at your pisstest until an hour or 2 after you stop. >> >> >So you hit it really hard, and you should peak until a few hours after, >> >> >but you go to bed straight after stopping and you will get pissed while >> >> >you sleep. EASY. >> >> > >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. >> > >> >You have to be difficult don't you? Ok, set your alarm so that every >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >> >pissed. See there's are way around everything. >> > >> >> I find that an IV drip by my bed with a couple of bags of vodka generally >> keeps me pissed through the night... >> >> DaveK > >Oh, I'm always on the lookout for new ways to get smeshed. >Do you have to have a large knowledge of medicine to be able to set >this up? And how do I get my hands on the equipment? Well it's probably quite important to get the drip rate right, you don't want *too* much blood in your alcohol system! I think one of those machines they give people for self-administering doses of morphine should do the job nicely, you could just tape the button down before you fell asleep. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. > >-- >The Fucking Pigs > >Two guys, Scotch and Coke >Belches, guitars and cakewalk >The Fucking Pigs ROCK!!!! > >http://www.petitmorte.net/fuckingpigs/ > >STFGP - Freeballing since 1999 > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: what does mean the warning "trigraph(s) encountered" Date: Wed, 21 Feb 2001 09:51:50 +0000 From: Simon Farnsworth Message-ID: <3A938FB6.6080503@snellwilcox.com> References: <96vgsv$h40$1@news.etri.re.kr> ĂÖâ˝Ä wrote: > I've met this warning messages from Tornado 1 "xxx.c : warning: 1 > trigraph(s) encountered" > > I don't know the meaning of this warning... -_-; As it says in the GNU Toolkit manual (or the gcc info pages), trigraphs are ANSI C's horrible method for handling systems that do not have all the C special characters. Instead combinations of 3 characters are used, so %%/ might mean \ (I don't know for certain!) GCC is aware that most people don't use trigraphs, so it warns you that you have entered one. You may find that the code in xxx.c behaves slightly unexpectedly, as some of what the compiler saw does not match what you think you typed. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Gcc 2.95.3 for VxWorks-PPC Date: Wed, 21 Feb 2001 15:41:12 GMT From: "Robin Mitra" Message-ID: References: <96qfn6$nb2$1@front2.grolier.fr> Forget it, I found DaveK's website. But now I have the same problem ( malloc failed) , and no, the suggested patch didn't help. Any ideas? Robin "Robin Mitra" wrote in message news:EELk6.3277$XL.524583@dfiatx1-snr1.gtei.net... > Hi, > Maybe I missed the beginning of this thread, Where is gcc 2.95.3 available > from? > > Thanks, > Robin > > "Frédéric GARFAGNI" wrote in message > news:96qfn6$nb2$1@front2.grolier.fr... > > Hello, > > > > I've tried Gcc 2.95.3 but I meet a malloc failure when comes time to > convert > > binary files vxWorks_rom to Motorola format, using elfHex. The problem > > diseappear when I come back to the previous Gcc version delivered by > > VxWorks. > > > > selcompiler gcc > > --------------- > > ... > > D:\Tornado\host\x86-win32\bin\romsize PPC -b 00200000 vxWorks_rom > > vxWorks_rom: 1568(t) + 1389708(d) = 1391276 (705876 unused) > > D:\Tornado\host\x86-win32\bin\elfHex -v vxWorks_rom \ > > > vxWorks_rom.hex > > malloc failed > > make: *** [vxWorks_rom] Error 0xffffffff > > make: *** Deleting file `vxWorks_rom' > > > > selcompiler wrs > > --------------- > > ... > > D:\Tornado\host\x86-win32\bin\romsize PPC -b 00200000 vxWorks_rom > > vxWorks_rom: 1568(t) + 1392140(d) = 1393708 (703444 unused) > > D:\Tornado\host\x86-win32\bin\elfHex -v vxWorks_rom \ > > > vxWorks_rom.hex > > > > vxWorks = 1650353 bytes > > vxWorks.hex = 4181170 bytes > > > > > > Does anyone meet the same problem ? Any idea how to break it ? > > > > However that may be, many thanks to Dave KORN for his work and help to > > VxWorks community. > > > > > > > > Frédéric GARFAGNI > > TEAMLOG > > > > > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: remote load and startup Date: Wed, 21 Feb 2001 07:49:13 -0800 From: David Zempel Organization: Lockheed Martin Corporation Message-ID: <3A93E379.694B0CE3@excite.com> References: <3A92B843.75E23955@excite.com> <3A933406.F31AB055@yahoo.com> I believe that you are wrong about this. We currently rlogin to our target and then use the windsh command nfsMount to mount a host file system to the target. This is then followed by a load command that loads a command file that is on that system. The essence of my original question is, "How can I get the target to accept these same commands via a a remsh or rsh command from the host?" After persuing the script further that is in my original question, I've discovered that there is no way that a redirect of standard input would work in conjunction with a rlogin command, even between two unix systems. Automatically loading a script that mounts the file system and executes a startup script at boot is out of the question due to security concerns. Otherwise, that would probably be the ideal solution. Thanks anyway. Still looking for a solution, David. --------------------------- Newsgroups: comp.os.vxworks Subject: Flash memory questions Date: Wed, 21 Feb 2001 08:07:38 -0800 From: "T. Hariharan" Organization: Lawrence Berkeley National Laboratory Message-ID: <970pjo$8iq$1@overload.lbl.gov> Hello, A few questions on embedded and removable flash memory. The box is x86 based. Embedded: o Looks like TrueFFS is being widely used out there. But a simpler solution would be to use an embedded chip/card that acts as an IDE. (Silicon Storage Tech's ATA-Disk is a chip product. Sandisk makes FlashDrive card which you can plug like an IDE hard drive). Then you don't need TrueFFS at all. So the question is, what are the advantages of TrueFFS? There must be something I'm missing. The VxWorks TrueFFS doc says that if you format a flash under TrueFFS, you need to leave some "fallow" area where you copy the boot image. I guess you'll copy just the boot-rom (which has the TrueFFS/dosFs code) to this fallow area and keep the VxWorks image on the TrueFFS formatted filesystem. Is this correct? Since BIOS can boot from IDE drives, it seems simpler to not use TrueFFS. I don't have anything against TrueFFS - just want to know its advantages. Removable: o The choice here appears to be straight-forward. Use a PC Card ATA. The vxworks PCMCIA doc says that socket and chip services are not supported. Does this mean that vxworks does not support hot-swapping the removable flash card? Does anyone have good/bad experiences with specific card readers? Thanks, Hari --------------------------- Newsgroups: comp.os.vxworks Subject: VxWorks & PCI Date: Wed, 21 Feb 2001 17:21:30 +0100 From: Renate Meijer Organization: Vitatron Medical B.V. Message-ID: <3A93EB0A.81A16FA9@vitatron.com> Hi, I'm developing a VxWorks driver for Unidig IP cards running on x86 hardware (and BSP). The card in question uses a PLX9080 PCI controller which delivers the address 0xE0000000 for the BAR2 register. I set up the MMU using sysMmuMapAdd which comes out ok. However, when I dum the memory at that address the dump routine takes it's time on the first few bytes (as if it times out) and delivers nothing but zero's. Some time ago, i picked up a driver from this group to use as an example. Basically I do the same except this driver adds 0xC0000000 to BAR2 with a comment stating that there is an offset between the CPU addresses and the PCI address range. When I try this in my own driver, there's no delay for a dump at 0xA0000000 (0xE0000000 + (int) 0xC0000000). Does anyone know where 0xC0000000 comes from? Is it correct? Am I missing something in the initialisation or setup? Thanx in advance... Kind regards, Renate Meijer. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Rebuild kernel for VxSIM? Date: Wed, 21 Feb 2001 16:47:34 GMT From: Bill Pringlemeir Organization: Factory of the mind Message-ID: References: Sender: bpringlemeir@DeadDuck >>>>> "YHU" == YHU writes: YHU> Hi, I try to load a library using VxSIM and got the following YHU> errors [snip] YHU> I think I need to rebuild the kernel for VxSIM. But one thing I YHU> am not sure is that VxSIM is the version VxSIM Lite. Can this YHU> build including Socket interface and C++ iostreams APIs work in YHU> VxSIM Lite? YHU> Also, what are the procedures for rebuilding this kernel? All of this should be in the manual. I don't use the simulator, only real hardware. However, I believe that in $(WIND_BASE)/target/project directory you should find a simpc_vx project. I am sure you can copy/clone this to some new project. Then you can edit the properties using the `vxWorks' dialog tab to include the feature you want. Useful vxWorks URLS, "http://www.xs4all.nl/~borkhuis/vxworks/vxworks.html" "http://www.xs4all.nl/~borkhuis/vxworks/vxw_pt9.html" - -- You will discover that you have two left feet. Your piglet will need to be scrubbed this month. Your programs will start starting a revolution. This month a deadly disease would be a good thing to ponder. You'll perhaps in a few months be gay. Your lucky numbers are 20, 30, and 40. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: System hangs for certain Image sizes Date: Wed, 21 Feb 2001 17:01:51 GMT From: Bill Pringlemeir Organization: Factory of the mind Message-ID: References: <96vh89$dr6@news.or.intel.com> Sender: bpringlemeir@DeadDuck >>>>> "Anand" == Anand Rangarajan writes: Anand> Hi All, I'm running VxWorks on a MIPS. The Vxworks application Anand> image is compressed using deflate (comes with Tornado2.0) and Anand> is decompressed using inflate. The compressed image size is Anand> about 1.33 MB. The compression is about 78%. The problem is Anand> that the system boots properly only for some image Anand> sizes. Specifically, if I declare a global variable int Anand> dummyArray[10000]; the system hangs after the following error Anand> message. Do you have a cache? Is it possible that the data cache hasn't dumped out your interrupt code so that the code cache can look up the value? After the decompress you must flush the caches if you have done something abnormal, like enabling the cache so that the decompression runs faster (a very useful thing to do...). Also, it might be useful to declare some global _initialized_ data in usrConfig.c and print out its value. For example, static unsigned long dataTest = 0x12345678UL; ... buffer[32]; sprintf(buffer,"%lx",dataTest); DebugPrint("data is "); DebugPrint(buffer); DebugPrint("\n"); sprintf(buffer,"%p",&dataTest); DebugPrint("pointer is "); DebugPrint(buffer); DebugPrint("\n"); while(1); /* wait for data to print */ I have often found that the romdata, and initdata can be offset by some value. If the code doesn't print out a correct values, then the linker positioning and source are mixed up some how. Use a map file to determine how. I believe that the excVecInit() function is the first place to use this data. hth, Bill - -- Useful vxWorks URLS, "http://www.xs4all.nl/~borkhuis/vxworks/vxworks.html" "http://www.xs4all.nl/~borkhuis/vxworks/vxw_pt9.html" --------------------------- Newsgroups: comp.os.vxworks Subject: Re: tffs on PPMC750 Date: Wed, 21 Feb 2001 17:10:50 GMT From: Bill Pringlemeir Organization: Factory of the mind Message-ID: References: <96vpvg$hk2$1@newshost.mot.com> Sender: bpringlemeir@DeadDuck >>>>> "Venkatesh" == Venkatesh JS writes: Venkatesh> My MTD code uses this logic to write command sequence: WriteCmdSequence(FLASH_BASE_ADRS,0x00aa00aa, 0x555) { adrs = FLASH_BASE_ADRS + 8 * (0x555); *adrs = 0x00aa00aa; } Venkatesh> Here 0x00aa00aa is command sequence defined by AMD and Venkatesh> 0x555 is address specified by AMD product guide. Be careful! The address 0x555 has to be properly setup for your hardware. What address line from the processor hooks up to which address line of the NOR flash? For instance your example multiplies by 8 (shift by 3); this implies that A0 of flash connect to A3, which is rather bizzare. I think it should be four, but I am only guessing. I suggest that you write a routine that takes a shift parameter. myIDflash(int shift) { /* unlock seq*/ *(FLASH_BASE+(0x555< Message-ID: References: On Wed, 21 Feb 2001 11:39:55 -0500, qwerty wrote: >Hi guys, > >I need help here. I'm trying to setup SingleStep 7.5 on HPUX to not give >me a runtime error when it encounters a twi instruction on the MPC860. >I'm using the trap exception for some stuff and everytime the debugger >gets there, it stops. It is not a code problem, since it works with my >BDM box. I just need to configure the SingleStep debugger to let my code >handle the trap. Any idea? In the help, they talk about an exception >config menu but it doesn't seem to be available on HPUX... must be a >config file... > >Help! > >Channy More info: I looked at my vector (0x700) and it seems SingleStep is putting something else in there... could it be that it's using the program exception vector to handle it's breakpoints?? Any one has confirmation on this? Can we change that to something else? Erro message : stopped by program exception(privilege violation) at "address" Channy --------------------------- Newsgroups: comp.os.vxworks Subject: vsnprintf and stricmp Date: Wed, 21 Feb 2001 12:20:31 -0500 From: "Anisa Parikh" Organization: Verio Message-ID: Hi, We're using gnu set of libraries for vxworks. I couldn't find definitions for vsnprintf and stricmp. Would anyone know if versions of these are available or supported? Anisa --------------------------- Newsgroups: comp.os.vxworks Subject: Re: symbol table Date: Wed, 21 Feb 2001 15:31:14 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <3a914ccc.15023953@192.168.1.214> <8dyk6.435$yi4.421447@newsr1.u-net.net> <3a92b58c.11383515@192.168.1.214> Kim Putnam wrote in message <3a92b58c.11383515@192.168.1.214>... >My thoughts as well. Not sure how to resolve it thought. The >symFindByCName was not in my documentation either. I found it declared >in symLib.h, and a tcl script as well. Try declaring any functions that must be looked up in the symbol table as extern "C". You'll have to make do without having overloaded functions as entry points, but I'm sure you can work round that. Alternatively you could work out the name mangling by looking at the output from nm on the module containing your entry point function, and hardcode the mangled path into the call to symfindByName, but that would be going about it the hard way... DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Flash memory questions Date: Wed, 21 Feb 2001 17:54:14 GMT From: andreyk@home.com (Andray Kaganovsky) Organization: @Home Message-ID: References: <970pjo$8iq$1@overload.lbl.gov> "T. Hariharan" wrote in <970pjo$8iq$1@overload.lbl.gov>: >Hello, > >A few questions on embedded and removable flash memory. >The box is x86 based. > >Embedded: >o Looks like TrueFFS is being widely used out there. But a simpler >solution would be to use an embedded chip/card that acts as an IDE. >(Silicon Storage Tech's ATA-Disk is a chip product. Sandisk makes >FlashDrive card which you can plug like an IDE hard drive). >Then you don't need TrueFFS at all. So the question is, what are >the advantages of TrueFFS? There must be something I'm missing. > >The VxWorks TrueFFS doc says that if you format a flash under >TrueFFS, you need to leave some "fallow" area where you copy the >boot image. I guess you'll copy just the boot-rom (which has the >TrueFFS/dosFs code) to this fallow area and keep the VxWorks image >on the TrueFFS formatted filesystem. Is this correct? > >Since BIOS can boot from IDE drives, it seems simpler to >not use TrueFFS. > >I don't have anything against TrueFFS - just want to know >its advantages. > >Removable: >o The choice here appears to be straight-forward. Use a PC Card ATA. >The vxworks PCMCIA doc says that socket and chip services are not >supported. Does this mean that vxworks does not support hot-swapping >the removable flash card? > >Does anyone have good/bad experiences with specific card readers? > >Thanks, >Hari > [AndrayK]. I believe ATA flash disks should be more expensive than simple flash arrays, since they need to incorporate ATA controller into every ATA flash disk. Secondly, the board itself needs to have ATA hardware. While standard on x86, ATA support is frequently not found on non-x86 architectures. On the other hand, many of the non-x86 reference boards feature multi-megabyte flash arrays. This is where TrueFFS could be usefull - it allows user to turn the raw flash array into regular dosFs volume. regards, Andray --------------------------- Newsgroups: comp.os.vxworks Subject: Re: using startup script Date: Wed, 21 Feb 2001 17:57:15 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <3a93b197.104164821@news.ronet.de> Andi Betsche wrote in message <3a93b197.104164821@news.ronet.de>... >I have a 'silly' problem using the startup script under vxWorks 5.4 >with a motorolla mvme2700 cpu. The cpu starts but don't executes the >startup script. >I initialise a local harddisk with dosFs and want to start a startup >script on this harddisk. I configured the system to use a startup >script by including "development tool components - target shell >components - shell startup script". The system starts and says >"Unable to open startup script /sd0/startme". I find out that the >systems points to a directory on my Tornado - host (which I don't use >during booting). If I change the directory in target shell to "/sd0" >it shows that the startup script is existing. OK, look at the directory it claims is unknown: > Creation date: Feb 19 2001 > WDB: Ready. > >Unknown directory: /sd0 >Unable to open startup script /sd0/startme Now look at the directory you have to cd to >-> cd "/sd0/" >value = 0 = 0x0 >-> ll > size date time name >-------- ------ ------ -------- > 1165625 FEB-19-2001 12:17:38 VXWORKS > 512 AUG-30-2000 16:29:38 SYS [SNIP] Is it perhaps the case that -> cd "/sd0" -> ll might also not work ? Looking at your init code: >void usrAppInit (void) [SNIP] > /* add application specific code here */ > dosFsDevInit ("/sd0/", >scsiBlkDevCreate(scsiPhysDevIdGet(pSysScsiCtrl,0,0), 0, 0), NULL); > cd(); cd("."); /* ? */ > have you tried using dosFsDevInit ("/sd0", (no trailing slash on the device name) DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Gcc 2.95.3 for VxWorks-PPC Date: Wed, 21 Feb 2001 18:05:40 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <96qfn6$nb2$1@front2.grolier.fr> Robin Mitra wrote in message ... >Hi, >Maybe I missed the beginning of this thread, Where is gcc 2.95.3 available >from? 2.95.3 isn't officially released yet from the FSF, although it's in late beta. The source code is available at the Cygnus sourceware ftp site, at ftp://sourceware.cygnus.com/pub/gcc/releases/gcc-2.95.3-prerelease/ in the file gcc-2.95.3.test4.tar.gz (at the moment). If your target is PowerPC based, you can find a patched version at my website http://www.newgcc4vxworks4ppc.cjb.net/ which should work rather better than the FSF main sources, which haven't been kept up-to-date in the vxworks port for some time. There's also a binary install there that should work out-of-the-box on a Windows host, although I've been having some trouble with the debug information it puts out (I am beginning to think this is a binutils issue.) DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: remote load and startup Date: Wed, 21 Feb 2001 18:08:45 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <3A92B843.75E23955@excite.com> <3A933406.F31AB055@yahoo.com> <3A93E379.694B0CE3@excite.com> David Zempel wrote in message <3A93E379.694B0CE3@excite.com>... >I believe that you are wrong about this. We currently rlogin to our >target and then use the windsh command nfsMount to mount a host file >system to the target. This is then followed by a load command that loads >a command file that is on that system. >The essence of my original question is, "How can I get the target to >accept these same commands via a a remsh or rsh command from the host?" >After persuing the script further that is in my original question, I've >discovered that there is no way that a redirect of standard input would >work in conjunction with a rlogin command, even between two unix >systems. Well how about telnet then? That certainly works; it's used by the dejagnu testing framework for the gcc compiler. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: tffs on PPMC750 Date: Wed, 21 Feb 2001 18:03:06 GMT From: andreyk@home.com (Andray Kaganovsky) Organization: @Home Message-ID: References: <96vpvg$hk2$1@newshost.mot.com> Bill Pringlemeir wrote in : >>>>>> "Venkatesh" == Venkatesh JS writes: > > Venkatesh> My MTD code uses this logic to write command sequence: > > WriteCmdSequence(FLASH_BASE_ADRS,0x00aa00aa, 0x555) > { > adrs = FLASH_BASE_ADRS + 8 * (0x555); > > *adrs = 0x00aa00aa; > } > > Venkatesh> Here 0x00aa00aa is command sequence defined by AMD and > Venkatesh> 0x555 is address specified by AMD product guide. > >Be careful! The address 0x555 has to be properly setup for your >hardware. What address line from the processor hooks up to which >address line of the NOR flash? For instance your example multiplies >by 8 (shift by 3); this implies that A0 of flash connect to A3, which >is rather bizzare. I think it should be four, but I am only guessing. >I suggest that you write a routine that takes a shift parameter. > >myIDflash(int shift) >{ > /* unlock seq*/ > *(FLASH_BASE+(0x555< *(FLASH_BASE+(0xaaa< *(FLASH_BASE+(0x555<} > >You can use the shell display command (d FLASH_BASE) to see if the >ID sequence ran properly. > >hth, >Bill Pringlemeir. [AndrayK]. I also suggest that you verified that all the pointers above are defined as 'volatile', to prevent compiler from optimizing away the first statement. It looks like you are using interleave 4. If this is correct, why do you specify your commands like 0x00aa00aa etc. ? Shouldn't it be 0xaaaaaaaa etc. ? regards, Andray --------------------------- Newsgroups: comp.os.vxworks Subject: Re: vsnprintf and stricmp Date: Wed, 21 Feb 2001 18:11:41 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: Anisa Parikh wrote in message ... >Hi, > >We're using gnu set of libraries for vxworks. I couldn't find >definitions for vsnprintf and stricmp. Would anyone know >if versions of these are available or supported? If you want to be absolutely sure, use 'nm' from binutils to dump the labels from the libraries, and grep for it. The answer is probaly "no" if they don't show up, there's no reason why they should be hidden in any tricky way. In particular, vsnprintf was only introduced by the C99 standard, which wasn't released until after the last Gnu relase. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.arch.embedded,comp.os.psos,comp.sys.powerpc.tech,comp.os.vxworks Subject: Re: SingleStep and the 860 trap exception Date: Wed, 21 Feb 2001 12:59:23 -0500 From: Channy Message-ID: References: On Wed, 21 Feb 2001 12:34:24 -0500, Channy wrote: >On Wed, 21 Feb 2001 11:39:55 -0500, qwerty > wrote: > >>Hi guys, >> >>I need help here. I'm trying to setup SingleStep 7.5 on HPUX to not give >>me a runtime error when it encounters a twi instruction on the MPC860. >>I'm using the trap exception for some stuff and everytime the debugger >>gets there, it stops. It is not a code problem, since it works with my >>BDM box. I just need to configure the SingleStep debugger to let my code >>handle the trap. Any idea? In the help, they talk about an exception >>config menu but it doesn't seem to be available on HPUX... must be a >>config file... >> >>Help! >> >>Channy > >More info: > >I looked at my vector (0x700) and it seems SingleStep is putting >something else in there... could it be that it's using the program >exception vector to handle it's breakpoints?? Any one has confirmation >on this? Can we change that to something else? >Erro message : stopped by program exception(privilege violation) at >"address" > >Channy It is SingleStep for pROBE+ --------------------------- Newsgroups: comp.os.vxworks Subject: Re: time() depends on sysClkRate? Date: Wed, 21 Feb 2001 12:52:35 -0600 From: Andrew Johnson Organization: APS, Argonne National Laboratory Message-ID: <3A940E73.26584472@aps.anl.gov> References: <3A92FCA4.B043BDDE@mail.com> Kees van der Bent wrote: > > On my PEP Computers CP603 Pentium board running > VxWorks 5.4 the duration of seconds returned by the > VxWorks time() library function depends on the sysClkRate. > > So, after I do sysClkRateSet(100) (the default was 60), > seconds as measured by time() suddenly take 60/100 of > a real seconds. Is this a problem in my BSP or does this > have anything to do with implementation of time on a > PC board? Please let me know if there is something I > can do about this (or should I use other time routines > maybe). Pete Kockritz replied: > > Sounds like your BSP didn't fully implement sysClkRateSet. It should > adjust the period of the system tick to match the value you pass in. > That is, if you pass in 100, it should set the system tick to 10 msec. > Or, if it can't do this it should return ERROR. Actually I think his BSP is correctly changing the tick rate, but the time() function isn't taking account of the change. Have a look at the vxWorks reference manual for clock_setres(), which states "This routine should be called to inform the POSIX timers of the new clock resolution if sysClkRateSet() has been called after this library has been initialized". It looks like you have to call that as well. - - Andrew - -- Every great idea appears crazy to start with. --------------------------- Newsgroups: comp.os.vxworks Subject: RE: Flash memory questions Date: Wed, 21 Feb 2001 11:12:11 -0800 From: Charles Johnson Organization: Lawrence Berkeley National Laboratory Message-ID: <971458$fp7$1@overload.lbl.gov> Our experience with TFFS vs ATA flash is that ATA flash has some distinct disadvantages: 1. No wear leveling. 2. Unable to survive powerfail. Often we end up with a read error on a sector which can only be fixed if you re-write the sector. We're using the Silicon Tech ATA drives and it is very easy to damage the drive. - --Charles Johnson Oresis Communications, Inc. -----Original Message----- From: vxwexplo@lbl.gov [mailto:vxwexplo@lbl.gov] Sent: Wednesday, February 21, 2001 8:12 AM To: vxworks_users@csg.lbl.gov Subject: Flash memory questions Submitted-by vxwexplo-errs@csg.lbl.gov Wed Feb 21 08:08:34 2001 Submitted-by: "T. Hariharan" Hello, A few questions on embedded and removable flash memory. The box is x86 based. Embedded: o Looks like TrueFFS is being widely used out there. But a simpler solution would be to use an embedded chip/card that acts as an IDE. (Silicon Storage Tech's ATA-Disk is a chip product. Sandisk makes FlashDrive card which you can plug like an IDE hard drive). Then you don't need TrueFFS at all. So the question is, what are the advantages of TrueFFS? There must be something I'm missing. The VxWorks TrueFFS doc says that if you format a flash under TrueFFS, you need to leave some "fallow" area where you copy the boot image. I guess you'll copy just the boot-rom (which has the TrueFFS/dosFs code) to this fallow area and keep the VxWorks image on the TrueFFS formatted filesystem. Is this correct? Since BIOS can boot from IDE drives, it seems simpler to not use TrueFFS. I don't have anything against TrueFFS - just want to know its advantages. Removable: o The choice here appears to be straight-forward. Use a PC Card ATA. The vxworks PCMCIA doc says that socket and chip services are not supported. Does this mean that vxworks does not support hot-swapping the removable flash card? Does anyone have good/bad experiences with specific card readers? Thanks, Hari ********** This is a user group mailing list for vxWorks related topics see http://csg.lbl.gov/vxworks for posting and other info --------------------------- Newsgroups: comp.os.vxworks Subject: problem when loading vxWorks image Date: Wed, 21 Feb 2001 14:23:30 -0500 From: "Jason Jiang" Organization: Verio Message-ID: <_AUk6.18466$Sl.797153@iad-read.news.verio.net> I specified a vxWorks image in the boot line and booted the processor up. Then I opened Hyper Terminal (serial port) and want to load the same vxWorks image from the host into the SDRAM. I tried both 'ld' and 'loadModule' and got the same response: it prompted one or several characters like 'm', 'ma', or 'mach' and stoped. no more prompts. The image was about 1.2M big (I could load a file which was much bigger than it). What's the matter? Please help!!! --------------------------- Newsgroups: comp.os.vxworks Subject: large downloadable image Date: Wed, 21 Feb 2001 14:30:42 -0500 From: "Anisa Parikh" Organization: Verio Message-ID: Hi folks, I'm running into problems with downloading a large image from Tornado to the target. The target is MPC 860. Has anyone run into a similar problem? The image is about 47 meg. In the target server, I've modified the memory cache size to be large enough. The wdb agent on the target gives an exception and gets restarted. Anisa --------------------------- Newsgroups: comp.os.vxworks Subject: Better Allocator than memLib?? Date: Wed, 21 Feb 2001 19:42:52 GMT From: Craig Vanderborgh Organization: Excite@Home - The Leader in Broadband http://home.com/faster Message-ID: <3A941A3C.1459A93F@voxware.com> Hi all: We are using memLib (specifically calloc, malloc, et al.) in our application and we're having severe problems with memory fragmentation. Our application no longer has any memory leaks. We're "fragmenting to death" though... Our application does speech recognition, synthesis, and a number of other things that rely on a competent dynamic memory manager, which memLib apparently is not. Is there a better alternative for a memory allocator that we're not aware of? We're thinking about writing our own, but we don't want to "reinvent the wheel" if we don't have to. Any comments, suggestions would be greatly appreciated. Thanks! Craig Vanderborgh Voxware Incorporated --------------------------- Newsgroups: comp.os.vxworks Subject: taskDelay problem Date: Wed, 21 Feb 2001 14:47:19 -0500 From: Diego Warszawski Organization: Lawrence Berkeley National Laboratory Message-ID: <9717lo$hnl$1@overload.lbl.gov> Hi, I am using Tornado 2.0 - VxWorks 5.4 I am trying to debug a problem we have in our SW. We are running several tasks. We have interrupts, tasks changing their priorities, and timers. One of the tasks is very simple: void MyTask(int,char**) { while(1) { DoMyStaff(); taskDelay( DELAY_1_SEC); // 100 ticks } } This stack is getting stuck in the taskDelay call. The target shell goes on running. The task trace shows: 485230 _taskDelay +122: idleLoop([b860a8,b86270,b84bf0,468cf4,64,b860a8]) The task state is READY all the time instead of changing to DELAY. This blocks all the tasks with lower priority. I checked the assembly code and at taskDelay+122 there is a call to windExit(). What could have happened to cause this problem? Any pointers? Thanks for your help! Diego W. --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:20:52 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: <0l889ts97snuhm2g6blquaqp1c7d14kqos@4ax.com> References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96slm3$5j2$4@intimidator.databasix.com> <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >Optional Identity wrote: >> >> > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >Optional Identity wrote: >> >> >> > >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> > >> >> >> >[snip] >> >> >> > >> >> >> >> >> >> >> >> >> >> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid cause >> >> >> >> >> >> >> >> >> >> >:(>> >>they are sober. >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >:(>> > Are you sure it isn't the other way round ? >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >:(>> > DaveK >> >> >> >> >> >> >> >> >> >> >:(>> >> >> >> >> >> >> >> >> >> >> >:(>> Do you mean they are sober because they are stupid? >> >> >> >> >> >> >> >> >> >> >:(> >> >> >> >> >> >> >> >> >> >> >:(>He could have a point. >> >> >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >> >> >:( DaveK >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >That's nice to know >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> It's not cool either! >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> Only for a short time, though. >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> Yeah that too. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >It's an unfortunate part of life that we have to live with. >> >> >> >> >> >> >> >Kinda of like work, taxes and death. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> And sleep. >> >> >> >> >> >> > >> >> >> >> >> >> >Sleep aint to bad when you get enough that is. >> >> >> >> >> >> > >> >> >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >> >> >> >> >> > >> >> >> >> >> >Well the trick to that is just to drink so much that you actually get >> >> >> >> >> >pisster while you sleep. Generally in a big pissup session, you don't >> >> >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. >> >> >> >> >> >So you hit it really hard, and you should peak until a few hours after, >> >> >> >> >> >but you go to bed straight after stopping and you will get pissed while >> >> >> >> >> >you sleep. EASY. >> >> >> >> >> > >> >> >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. >> >> >> >> > >> >> >> >> >You have to be difficult don't you? Ok, set your alarm so that every >> >> >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >> >> >> >> >pissed. See there's are way around everything. >> >> >> >> > >> >> >> >> And clearly you have though of them all. >> >> >> > >> >> >> >Not all of them, just most. I have got to leave myself something to do >> >> >> >for the next 20 odd years. >> >> >> > >> >> >> What you planning on doing after 20 years? >> >> > >> >> >Ops, I meant to say after the next 20 odd years. >> >> >Well, medically, my body will only be able to keep on drinking >> >> >for the next 20 odd years. So I'm going to have something to >> >> >do after those 20 odd years are up... >> >> > >> >> You could just save up for a liver transplant. >> > >> >Shit. Fuck. >> >Do you realise how much time you just save me >> >with those 9 words? >> > >> One of the benefits of age and experience. > >Shit, well I owe you. The first shout is on me. >Though you better print this off and bring it with you for proof as >I will forget and deny most vigioursly that I said it. :) > > Nah, I don't care bout teh shouts!! I will just say "liver" over and over til you buy me a drink!!! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:23:40 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> References: <96km2l$386$1@kneejerk.databasix.com> <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:50:21 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:22:13 >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >Optional Identity wrote: >> >> > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:52:54 >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being that most people >> >> >> >> >are too >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that need to drink more. >> >> >> >> >>>> >:(>> >>> > >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it *is* their fault!! >> >> >> >> >>>> >:(>> >> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid >> >> >> >> >cause >> >> >> >> >>>> >:(>> >>they are sober. >> >> >> >> >>>> >:(>> > >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? >> >> >> >> >>>> >:(>> > >> >> >> >> >>>> >:(>> > DaveK >> >> >> >> >>>> >:(>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are stupid? >> >> >> >> >>>> >:(> >> >> >> >> >>>> >:(>He could have a point. >> >> >> >> >>>> >:( >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >>>> >:( >> >> >> >> >>>> >:( DaveK >> >> >> >> >>>> > >> >> >> >> >>>> >That's nice to know >> >> >> >> >>>> >> >> >> >> >>>> It's not cool either! >> >> >> >> >>> >> >> >> >> >>>Unfortunately it is sometimes necessary. >> >> >> >> >>> >> >> >> >> >>Only for a short time, though. >> >> >> >> > >> >> >> >> > Preferably no longer than it takes to open the next bottle.... >> >> >> >> > >> >> >> >> Or hip-flask, if you chance to be at work. >> >> >> > >> >> >> >Or in your slurpie if you are in a dry area.... >> >> >> >The cops don't have a clue. :) >> >> >> > >> >> >> The old vodka in the fruit salad trick. :) >> >> > >> >> >That works too, I got so shit face at my brothers 21st with that one. >> >> >Oh and the second hand smoke had a part to play. >> >> > >> >> I find when doing both it's best to do the pot first. >> > >> >I don't really smoke pot myself, but if someone is doing it near me, >> >I wont complain too much..... >> > >> It can interfere with ones consumption of alcohol. > >If not done in the correct manner I am sure it could. So I usually don't >take that risk, pluss if I'm ever stoned I just sit there and veg out, I >can't move at all. That's not fun at all. > I know what you mean!! I too just veg out!! and can't drink enough, that ca't be right, huh? - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: comp.os.vxworks Subject: Re: using startup script Date: Wed, 21 Feb 2001 20:42:10 -0000 From: "David Laight" Organization: BT Internet Message-ID: <9718up$t0j$1@uranium.btinternet.com> References: <3a93b197.104164821@news.ronet.de> Look in usrNetInit - in target/src/config/usrNetwork.c There is a call to ioDefPathSet( devName ) - this is one of vxWorks synonyms for cd. It has they effect of making all files opens check the network (assumed boot) device first - a REAL pain if your network isn't up, or you didn't really boot from it. David Andi Betsche wrote in message news:3a93b197.104164821@news.ronet.de... > Hello everybody, > > I have a 'silly' problem using the startup script under vxWorks 5.4 > with a motorolla mvme2700 cpu. The cpu starts but don't executes the > startup script. > I initialise a local harddisk with dosFs and want to start a startup > script on this harddisk. I configured the system to use a startup > script by including "development tool components - target shell > components - shell startup script". The system starts and says > "Unable to open startup script /sd0/startme". I find out that the > systems points to a directory on my Tornado - host (which I don't use > during booting). If I change the directory in target shell to "/sd0" > it shows that the startup script is existing. > If I use a startup script located on my host this is executed, but > thats not what I want to do. > --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:43:13 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:18 GMT, the Troll JayDee Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ >pacific.net.au> wrote: > > >>> I find that an IV drip by my bed with a couple of bags of vodka generally >>> keeps me pissed through the night... > >>> DaveK > >>Oh, I'm always on the lookout for new ways to get smeshed. >>Do you have to have a large knowledge of medicine to be able to set >>this up? And how do I get my hands on the equipment? > >you can use an ultrasonic humidifier to produce ethyl alcohol >vapor...breathe that shit and you'll get fucked-up, real-good > >best bet is to distill 100-proof vodka into pure grain alcohol > >then, put it in a jug with an appropriate amount of anhydrous >magnesium sulfate, which removes the last traces of water > >...it's the killer shit, lemme-tellya > SUBSCRIBE!!!!! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:44:37 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <=ZSTOrcE18YzTTWWZ7l3dmzn896P@4ax.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:20 GMT, the Troll JayDee Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >On Wed, 21 Feb 2001 17:40:27 +1100, STFGP <"goose_fp"@ >pacific.net.au> wrote: > > >>> It can interfere with ones consumption of alcohol. > >>If not done in the correct manner I am sure it could. So I usually don't >>take that risk, pluss if I'm ever stoned I just sit there and veg out, I >>can't move at all. That's not fun at all. > >oh, fuck the booze...it's toxic shit, anyway... > >just smoke decent equatorial varieties of weed > >I had this shit called Rutabagah (leaves looked like rutabagah >leaves) that was an Afghanistani-Columbian hybrid, and forced >the females to produce pollen, which produced only female seeds > >...didn't have to fuck with whacking a bunch of apical meristems Just reading this is getting me off! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: comp.os.vxworks Subject: Re: what does mean the warning "trigraph(s) encountered" Date: Wed, 21 Feb 2001 20:51:56 -0000 From: "David Laight" Organization: BT Internet Message-ID: <9719h2$iso$1@neptunium.btinternet.com> References: <96vgsv$h40$1@news.etri.re.kr> RTFM! In this case ANSI C - try K&R 2. Trigraphs are horrid beasts invented by the ANSI C committe way back in the mid 1980s in order to make C source readable on terminals/printers with non-US/UK 7-bit character sets. In particular those where [ ] ^ \ { } ` etc are accented characters rather than punctuation. Any sequence ??x (in C source) is replaced by a single other character. I don't know the mappings, but suspect: ??( is [ ??/ is \ there are about a dozen of them. You probably have ??? in a string somewhere... (you can subvert things by concatenating strings - "abc" "def" is identical to "abcdef") Trigraphs are thus valid C - but almost certainly not what you had in mind. David ĂÖâ˝Ä wrote in message news:96vgsv$h40$1@news.etri.re.kr... > Hi, everyone. > > I've met this warning messages from Tornado 1 "xxx.c : warning: 1 > trigraph(s) encountered" > > I don't know the meaning of this warning... -_-; > > please, let me know the meaning and solution.. > > thanks for reading and have a nice day... > > --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:57:16 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <9719op$ios$1@intimidator.databasix.com> References: <96km2l$386$1@kneejerk.databasix.com> <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9m Optional Identity wrote: > According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:50:21 > >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> obviously gratuitous attention seeking statement into the aethyr of > >> alt.usenet.kooks : > >> > >> >Optional Identity wrote: > >> > > >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:22:13 > >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> alt.usenet.kooks : > >> >> > >> >> >Optional Identity wrote: > >> >> > > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:52:54 > >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> alt.usenet.kooks : > >> >> >> > >> >> >> >Optional Identity wrote: > >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being that most people > >> >> >> >> >are too > >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that need to drink more. > >> >> >> >> >>>> >:(>> >>> > > >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it *is* their fault!! > >> >> >> >> >>>> >:(>> >> > >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid > >> >> >> >> >cause > >> >> >> >> >>>> >:(>> >>they are sober. > >> >> >> >> >>>> >:(>> > > >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? > >> >> >> >> >>>> >:(>> > > >> >> >> >> >>>> >:(>> > DaveK > >> >> >> >> >>>> >:(>> > >> >> >> >> >>>> >:(>> Do you mean they are sober because they are stupid? > >> >> >> >> >>>> >:(> > >> >> >> >> >>>> >:(>He could have a point. > >> >> >> >> >>>> >:( > >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. > >> >> >> >> >>>> >:( > >> >> >> >> >>>> >:( DaveK > >> >> >> >> >>>> > > >> >> >> >> >>>> >That's nice to know > >> >> >> >> >>>> > >> >> >> >> >>>> It's not cool either! > >> >> >> >> >>> > >> >> >> >> >>>Unfortunately it is sometimes necessary. > >> >> >> >> >>> > >> >> >> >> >>Only for a short time, though. > >> >> >> >> > > >> >> >> >> > Preferably no longer than it takes to open the next bottle.... > >> >> >> >> > > >> >> >> >> Or hip-flask, if you chance to be at work. > >> >> >> > > >> >> >> >Or in your slurpie if you are in a dry area.... > >> >> >> >The cops don't have a clue. :) > >> >> >> > > >> >> >> The old vodka in the fruit salad trick. :) > >> >> > > >> >> >That works too, I got so shit face at my brothers 21st with that one. > >> >> >Oh and the second hand smoke had a part to play. > >> >> > > >> >> I find when doing both it's best to do the pot first. > >> > > >> >I don't really smoke pot myself, but if someone is doing it near me, > >> >I wont complain too much..... > >> > > >> It can interfere with ones consumption of alcohol. > > > >If not done in the correct manner I am sure it could. So I usually don't > >take that risk, pluss if I'm ever stoned I just sit there and veg out, I > >can't move at all. That's not fun at all. > > > I know what you mean!! I too just veg out!! and can't drink enough, > that ca't be right, huh? Definetly unacceptable... Though if I drink alot then smoke a bit, then I don't veg out, though I don't often do this. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:59:30 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <9719su$lp0$1@intimidator.databasix.com> References: <5t1r8tolopnc2vd94h317qklrvirs7f409@4ax.com> <96km2l$386$1@kneejerk.databasix.com> <96l2fm$dnh$1@blackhelicopter.databasix.com> <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> STFGP <"goose_fp"@ pacific.net.au> > wrote in message > <96uoe3$qr0$4@intimidator.databasix.com>... > >Dave Korn wrote: > > > >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message > >> <96qpcd$fr2$1@intimidator.databasix.com>... > >> >Optional Identity wrote: > >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. > >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >:( DaveK > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >That's nice to know > >> >> >> >> >> >> >> > >> >> >> >> >> >> >> It's not cool either! > >> >> >> >> >> >> > > >> >> >> >> >> >> >Unfortunately it is sometimes necessary. > >> >> >> >> >> >> > > >> >> >> >> >> >> Only for a short time, though. > >> >> >> >> >> > > >> >> >> >> >> >Well at least as long as you need to drive anywhere. > >> >> >> >> >> > > >> >> >> >> >> Yeah that too. > >> >> >> >> > > >> >> >> >> >It's an unfortunate part of life that we have to live with. > >> >> >> >> >Kinda of like work, taxes and death. > >> >> >> >> > > >> >> >> >> And sleep. > >> >> >> > > >> >> >> >Sleep aint to bad when you get enough that is. > >> >> >> > > >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. > >> >> > > >> >> >Well the trick to that is just to drink so much that you actually get > >> >> >pisster while you sleep. Generally in a big pissup session, you > don't > >> >> >actually peack at your pisstest until an hour or 2 after you stop. > >> >> >So you hit it really hard, and you should peak until a few hours > after, > >> >> >but you go to bed straight after stopping and you will get pissed > while > >> >> >you sleep. EASY. > >> >> > > >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. > >> > > >> >You have to be difficult don't you? Ok, set your alarm so that every > >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you > >> >pissed. See there's are way around everything. > >> > > >> > >> I find that an IV drip by my bed with a couple of bags of vodka > generally > >> keeps me pissed through the night... > >> > >> DaveK > > > >Oh, I'm always on the lookout for new ways to get smeshed. > >Do you have to have a large knowledge of medicine to be able to set > >this up? And how do I get my hands on the equipment? > > Well it's probably quite important to get the drip rate right, you don't > want *too* much blood in your alcohol system! I think one of those machines > they give people for self-administering doses of morphine should do the job > nicely, you could just tape the button down before you fell asleep. > > DaveK Or if you could just get your hands on morphine........ > -- > They laughed at Galileo. They laughed at Copernicus. They laughed at > Columbus. But remember, they also laughed at Bozo the Clown. > > > >-- > >The Fucking Pigs > > > >Two guys, Scotch and Coke > >Belches, guitars and cakewalk > >The Fucking Pigs ROCK!!!! > > > >http://www.petitmorte.net/fuckingpigs/ > > > >STFGP - Freeballing since 1999 > > > > - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 07:58:06 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <9719qb$ios$2@intimidator.databasix.com> References: <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> Optional Identity wrote: > According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:18 > GMT, the Troll JayDee Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ > >pacific.net.au> wrote: > > > > > >>> I find that an IV drip by my bed with a couple of bags of vodka generally > >>> keeps me pissed through the night... > > > >>> DaveK > > > >>Oh, I'm always on the lookout for new ways to get smeshed. > >>Do you have to have a large knowledge of medicine to be able to set > >>this up? And how do I get my hands on the equipment? > > > >you can use an ultrasonic humidifier to produce ethyl alcohol > >vapor...breathe that shit and you'll get fucked-up, real-good > > > >best bet is to distill 100-proof vodka into pure grain alcohol > > > >then, put it in a jug with an appropriate amount of anhydrous > >magnesium sulfate, which removes the last traces of water > > > >...it's the killer shit, lemme-tellya > > > SUBSCRIBE!!!!! Um... The posibilities. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 08:01:22 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <971a0f$lp0$2@intimidator.databasix.com> References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96slm3$5j2$4@intimidator.databasix.com> <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> <0l889ts97snuhm2g6blquaqp1c7d14kqos@ Optional Identity wrote: > According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 > >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> obviously gratuitous attention seeking statement into the aethyr of > >> alt.usenet.kooks : > >> > >> >Optional Identity wrote: > >> > > >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 > >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> alt.usenet.kooks : > >> >> > >> >> >Optional Identity wrote: > >> >> > > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 > >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> alt.usenet.kooks : > >> >> >> > >> >> >> >Optional Identity wrote: > >> >> >> > > >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 > >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> >> alt.usenet.kooks : > >> >> >> >> > >> >> >> >> >Optional Identity wrote: > >> >> >> > > >> >> >> >[snip] > >> >> >> > > >> >> >> >> >> >> >> >> >> >> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid cause > >> >> >> >> >> >> >> >> >> >> >:(>> >>they are sober. > >> >> >> >> >> >> >> >> >> >> >:(>> > > >> >> >> >> >> >> >> >> >> >> >:(>> > Are you sure it isn't the other way round ? > >> >> >> >> >> >> >> >> >> >> >:(>> > > >> >> >> >> >> >> >> >> >> >> >:(>> > DaveK > >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >:(>> Do you mean they are sober because they are stupid? > >> >> >> >> >> >> >> >> >> >> >:(> > >> >> >> >> >> >> >> >> >> >> >:(>He could have a point. > >> >> >> >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. > >> >> >> >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >> >> >> >:( DaveK > >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >That's nice to know > >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> It's not cool either! > >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. > >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> Only for a short time, though. > >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. > >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> Yeah that too. > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >It's an unfortunate part of life that we have to live with. > >> >> >> >> >> >> >> >Kinda of like work, taxes and death. > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> And sleep. > >> >> >> >> >> >> > > >> >> >> >> >> >> >Sleep aint to bad when you get enough that is. > >> >> >> >> >> >> > > >> >> >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. > >> >> >> >> >> > > >> >> >> >> >> >Well the trick to that is just to drink so much that you actually get > >> >> >> >> >> >pisster while you sleep. Generally in a big pissup session, you don't > >> >> >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. > >> >> >> >> >> >So you hit it really hard, and you should peak until a few hours after, > >> >> >> >> >> >but you go to bed straight after stopping and you will get pissed while > >> >> >> >> >> >you sleep. EASY. > >> >> >> >> >> > > >> >> >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. > >> >> >> >> > > >> >> >> >> >You have to be difficult don't you? Ok, set your alarm so that every > >> >> >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you > >> >> >> >> >pissed. See there's are way around everything. > >> >> >> >> > > >> >> >> >> And clearly you have though of them all. > >> >> >> > > >> >> >> >Not all of them, just most. I have got to leave myself something to do > >> >> >> >for the next 20 odd years. > >> >> >> > > >> >> >> What you planning on doing after 20 years? > >> >> > > >> >> >Ops, I meant to say after the next 20 odd years. > >> >> >Well, medically, my body will only be able to keep on drinking > >> >> >for the next 20 odd years. So I'm going to have something to > >> >> >do after those 20 odd years are up... > >> >> > > >> >> You could just save up for a liver transplant. > >> > > >> >Shit. Fuck. > >> >Do you realise how much time you just save me > >> >with those 9 words? > >> > > >> One of the benefits of age and experience. > > > >Shit, well I owe you. The first shout is on me. > >Though you better print this off and bring it with you for proof as > >I will forget and deny most vigioursly that I said it. :) > > > > > Nah, I don't care bout teh shouts!! I will just say "liver" over and > over til you buy me a drink!!! That could work, depending on how much I already had already had to drink, not enough and you would get your drink. To much and I would YELL "FUCK OFF" over and over until you bought me 3 rounds. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: comp.os.vxworks Subject: Re: taskDelay problem Date: Wed, 21 Feb 2001 21:40:23 GMT From: Craig Vanderborgh Organization: Excite@Home - The Leader in Broadband http://home.com/faster Message-ID: <3A9435C7.83FE69D7@voxware.com> References: <9717lo$hnl$1@overload.lbl.gov> Hi Diego: You should check your thread stack size and ensure yourself that you have created your tasks with enough stack for what you are trying to do. Things get pretty weird (non-causal) when you exceed your thread stack allocation. I had similar problems just 2 weeks ago until I realized what was wrong. Good Luck! craig vanderborgh voxware incorporated Diego Warszawski wrote: > > Hi, > I am using Tornado 2.0 - VxWorks 5.4 > I am trying to debug a problem we have in our SW. > We are running several tasks. We have interrupts, tasks changing > their priorities, and timers. One of the tasks is very simple: > > void MyTask(int,char**) > { > while(1) > { > DoMyStaff(); > taskDelay( DELAY_1_SEC); // 100 ticks > } > } > > This stack is getting stuck in the taskDelay call. The target shell > goes on running. The task trace shows: > > 485230 _taskDelay +122: idleLoop([b860a8,b86270,b84bf0,468cf4,64,b860a8]) > > The task state is READY all the time instead of changing to DELAY. > This blocks all the tasks with lower priority. I checked the assembly code > and at taskDelay+122 there is a call to windExit(). > What could have happened to cause this problem? Any pointers? > Thanks for your help! > > Diego W. > --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 09:24:53 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96qpcd$fr2$1@intimidator.databasix.com> <96slm3$5j2$4@intimidator.databasix.com> <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> <0l889ts97snuhm2g6blquaqp1c7d14kqos@4ax.com> <971a0f$lp0$2@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 08:01:22 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >Optional Identity wrote: >> >> > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >Optional Identity wrote: >> >> >> > >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> > >> >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> > >> >> >> >> >[snip] >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid cause >> >> >> >> >> >> >> >> >> >> >> >:(>> >>they are sober. >> >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >> >:(>> > Are you sure it isn't the other way round ? >> >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >> >:(>> > DaveK >> >> >> >> >> >> >> >> >> >> >> >:(>> >> >> >> >> >> >> >> >> >> >> >> >:(>> Do you mean they are sober because they are stupid? >> >> >> >> >> >> >> >> >> >> >> >:(> >> >> >> >> >> >> >> >> >> >> >> >:(>He could have a point. >> >> >> >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >> >> >> >:( DaveK >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >That's nice to know >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> It's not cool either! >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> Only for a short time, though. >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> Yeah that too. >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >It's an unfortunate part of life that we have to live with. >> >> >> >> >> >> >> >> >Kinda of like work, taxes and death. >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> And sleep. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >Sleep aint to bad when you get enough that is. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >> >> >> >> >> >> > >> >> >> >> >> >> >Well the trick to that is just to drink so much that you actually get >> >> >> >> >> >> >pisster while you sleep. Generally in a big pissup session, you don't >> >> >> >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. >> >> >> >> >> >> >So you hit it really hard, and you should peak until a few hours after, >> >> >> >> >> >> >but you go to bed straight after stopping and you will get pissed while >> >> >> >> >> >> >you sleep. EASY. >> >> >> >> >> >> > >> >> >> >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. >> >> >> >> >> > >> >> >> >> >> >You have to be difficult don't you? Ok, set your alarm so that every >> >> >> >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >> >> >> >> >> >pissed. See there's are way around everything. >> >> >> >> >> > >> >> >> >> >> And clearly you have though of them all. >> >> >> >> > >> >> >> >> >Not all of them, just most. I have got to leave myself something to do >> >> >> >> >for the next 20 odd years. >> >> >> >> > >> >> >> >> What you planning on doing after 20 years? >> >> >> > >> >> >> >Ops, I meant to say after the next 20 odd years. >> >> >> >Well, medically, my body will only be able to keep on drinking >> >> >> >for the next 20 odd years. So I'm going to have something to >> >> >> >do after those 20 odd years are up... >> >> >> > >> >> >> You could just save up for a liver transplant. >> >> > >> >> >Shit. Fuck. >> >> >Do you realise how much time you just save me >> >> >with those 9 words? >> >> > >> >> One of the benefits of age and experience. >> > >> >Shit, well I owe you. The first shout is on me. >> >Though you better print this off and bring it with you for proof as >> >I will forget and deny most vigioursly that I said it. :) >> > >> > >> Nah, I don't care bout teh shouts!! I will just say "liver" over and >> over til you buy me a drink!!! > >That could work, depending on how much I already had already >had to drink, not enough and you would get your drink. To much >and I would YELL "FUCK OFF" over and over until you bought >me 3 rounds. > That would work, I am sensitive and I will buy drinks for someone yelling "FUCK OFF" until they stop! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 09:26:26 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Dave Korn wrote: > >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >> <96uoe3$qr0$4@intimidator.databasix.com>... >> >Dave Korn wrote: >> > >> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >> >> <96qpcd$fr2$1@intimidator.databasix.com>... >> >> >Optional Identity wrote: >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >:( DaveK >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >That's nice to know >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> It's not cool either! >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> Only for a short time, though. >> >> >> >> >> >> > >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >> >> >> >> >> >> > >> >> >> >> >> >> Yeah that too. >> >> >> >> >> > >> >> >> >> >> >It's an unfortunate part of life that we have to live with. >> >> >> >> >> >Kinda of like work, taxes and death. >> >> >> >> >> > >> >> >> >> >> And sleep. >> >> >> >> > >> >> >> >> >Sleep aint to bad when you get enough that is. >> >> >> >> > >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >> >> >> > >> >> >> >Well the trick to that is just to drink so much that you actually get >> >> >> >pisster while you sleep. Generally in a big pissup session, you >> don't >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. >> >> >> >So you hit it really hard, and you should peak until a few hours >> after, >> >> >> >but you go to bed straight after stopping and you will get pissed >> while >> >> >> >you sleep. EASY. >> >> >> > >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. >> >> > >> >> >You have to be difficult don't you? Ok, set your alarm so that every >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >> >> >pissed. See there's are way around everything. >> >> > >> >> >> >> I find that an IV drip by my bed with a couple of bags of vodka >> generally >> >> keeps me pissed through the night... >> >> >> >> DaveK >> > >> >Oh, I'm always on the lookout for new ways to get smeshed. >> >Do you have to have a large knowledge of medicine to be able to set >> >this up? And how do I get my hands on the equipment? >> >> Well it's probably quite important to get the drip rate right, you don't >> want *too* much blood in your alcohol system! I think one of those machines >> they give people for self-administering doses of morphine should do the job >> nicely, you could just tape the button down before you fell asleep. >> >> DaveK > >Or if you could just get your hands on morphine........ > Don't start with the morphine!!! I just love opiates.... Sorry, I think I must have nodded off for a while, what were we talking about? - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 09:26:54 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719qb$ios$2@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:58:06 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:18 >> GMT, the Troll JayDee Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ >> >pacific.net.au> wrote: >> > >> > >> >>> I find that an IV drip by my bed with a couple of bags of vodka generally >> >>> keeps me pissed through the night... >> > >> >>> DaveK >> > >> >>Oh, I'm always on the lookout for new ways to get smeshed. >> >>Do you have to have a large knowledge of medicine to be able to set >> >>this up? And how do I get my hands on the equipment? >> > >> >you can use an ultrasonic humidifier to produce ethyl alcohol >> >vapor...breathe that shit and you'll get fucked-up, real-good >> > >> >best bet is to distill 100-proof vodka into pure grain alcohol >> > >> >then, put it in a jug with an appropriate amount of anhydrous >> >magnesium sulfate, which removes the last traces of water >> > >> >...it's the killer shit, lemme-tellya >> > >> SUBSCRIBE!!!!! > >Um... The posibilities. > It is a worry, isn't it? - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 09:27:50 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:50:21 >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >Optional Identity wrote: >> >> > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:22:13 >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >Optional Identity wrote: >> >> >> > >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:52:54 >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being that most people >> >> >> >> >> >are too >> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that need to drink more. >> >> >> >> >> >>>> >:(>> >>> > >> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it *is* their fault!! >> >> >> >> >> >>>> >:(>> >> >> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid >> >> >> >> >> >cause >> >> >> >> >> >>>> >:(>> >>they are sober. >> >> >> >> >> >>>> >:(>> > >> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? >> >> >> >> >> >>>> >:(>> > >> >> >> >> >> >>>> >:(>> > DaveK >> >> >> >> >> >>>> >:(>> >> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are stupid? >> >> >> >> >> >>>> >:(> >> >> >> >> >> >>>> >:(>He could have a point. >> >> >> >> >> >>>> >:( >> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >> >>>> >:( >> >> >> >> >> >>>> >:( DaveK >> >> >> >> >> >>>> > >> >> >> >> >> >>>> >That's nice to know >> >> >> >> >> >>>> >> >> >> >> >> >>>> It's not cool either! >> >> >> >> >> >>> >> >> >> >> >> >>>Unfortunately it is sometimes necessary. >> >> >> >> >> >>> >> >> >> >> >> >>Only for a short time, though. >> >> >> >> >> > >> >> >> >> >> > Preferably no longer than it takes to open the next bottle.... >> >> >> >> >> > >> >> >> >> >> Or hip-flask, if you chance to be at work. >> >> >> >> > >> >> >> >> >Or in your slurpie if you are in a dry area.... >> >> >> >> >The cops don't have a clue. :) >> >> >> >> > >> >> >> >> The old vodka in the fruit salad trick. :) >> >> >> > >> >> >> >That works too, I got so shit face at my brothers 21st with that one. >> >> >> >Oh and the second hand smoke had a part to play. >> >> >> > >> >> >> I find when doing both it's best to do the pot first. >> >> > >> >> >I don't really smoke pot myself, but if someone is doing it near me, >> >> >I wont complain too much..... >> >> > >> >> It can interfere with ones consumption of alcohol. >> > >> >If not done in the correct manner I am sure it could. So I usually don't >> >take that risk, pluss if I'm ever stoned I just sit there and veg out, I >> >can't move at all. That's not fun at all. >> > >> I know what you mean!! I too just veg out!! and can't drink enough, >> that ca't be right, huh? > >Definetly unacceptable... Though if I drink alot then smoke a bit, then >I don't veg out, though I don't often do this. > I try to avoid it when I am horribly pissed, it just makes me fall asleep. - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: comp.os.vxworks Subject: Re: STDIN problem on target Date: Wed, 21 Feb 2001 15:26:50 -0800 From: "Gang Wang" Organization: None Message-ID: References: <96u8o9$15j$1@overload.lbl.gov> Ken: Thanks for your message. I guess I did not explain it very clearly. I want to have it run just as an interactive program in xterm or dos window. Within a xterm, even if the program tries to read from the stdin, you still gets what you typed echoed right back as you are typing, WITHOUT waiting for the . I did try config stdin with icntl(...). The best I could get back is that I could turn the echo. It does not show any difference with the OPT_LINE set or unset. On the other hand, when I run the code in the debugger and use the serial console, everything works as I hoped. Thanks anyway. Gang Wang Baron, Ken wrote in message <96u8o9$15j$1@overload.lbl.gov>... > > [Baron, Ken] I ran it just like you did. I used the simulator and >built your code as a downloadable project for SIMNTgnu. > Note that because the ttyDrv is set for terminal mode, fgets will >not return until a is typed in the windsh for case 1 and in the VxWorks >Simulator window for case 2. The ttyDrv can be set for different modes. See >the documentation. > >> Ken: >> >> Thanks for your response. >> How do you run it, exactly? >> I tried the following two ways: >> 1) In winsh windows, type testStdIO: >> I could not get character echo back when I am typing. >> 2) In winsh, run "sp(testStdIO)" >> nothing happens. >> >> What's wrong with my setting? >> >> Thanks in advance. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: (beginer) Problem "catching" a cPCI interrupt Date: Mon, 19 Feb 2001 12:21:26 -0600 From: "S Johnson" Organization: Newshosting.com Message-ID: <3a945d87@news.inxpress.net> References: <3a8a4aab@news.bezeqint.net> The interrupts are disabled. Look for "SRC8" in config.h and change the level to anything except 0. "David Ganor" wrote in message news:3a8a4aab@news.bezeqint.net... > Hello, > > Some backgroug info, first: > 1. VxWorks 5.4 > 2. Target: Motorola with CPU PPC750 > 3. BSP version: 1.2/0 > 4. Tornado II > > I have a system board with a cPCI interface, on which a PLX9054 chip is the > PCI bridge (the board has a local bus...). > I have configured the CPU_PCI_MEM_SIZE to be 32MBytes and the board uses > about 10MBytes. > I have wrote an ISR to be activated when the board, througth the PLX chip, > drives an interrupt. There are no problems configuring the PLX and the > interrupt > line is "active". > When running the code the ISR isn't activated, thought the intConnect() > returns > with OK. I used intConnecte() like that: > lvl = PCI_cfg->DEV_INT_LINE; > ... > if (intConnect (INUM_TO_IVEC (lvl), (VOIDFUNCPTR) ISR, (int) this) != > OK) > { > printf("[PLX] ERROR - Failed to connect interrupt to ISR!\n"); > } > Could anyone sujest an insight? What am I doing wrong? > Maybe the PLX9054 isn't configured right? -> What are the main configuration > regarding > the described problem? > > Thanks in advance. > David Ganor > > --------------------------- Newsgroups: comp.os.vxworks Subject: vxworks memory management Date: Thu, 22 Feb 2001 09:23:25 +0800 From: "news.cn99.com" Organization: Bentium Ltd. Message-ID: <971pkv$qsd$1@mail.cn99.com> Does anyone can tell me the vxworks memory management? I searched WinRiver Web Site, but can't find it. What is special for realtime and embedded environment? Thanks, --------------------------- Newsgroups: comp.os.vxworks Subject: Re: large downloadable image Date: Wed, 21 Feb 2001 23:23:04 -0500 From: "Serge Sarraillon" Message-ID: References: you should use 'objcopy' to strip your file... (in my case my application file went down from 15 Meg to 2 Meg) "Anisa Parikh" wrote in message news:LGUk6.18470$Sl.797118@iad-read.news.verio.net... > Hi folks, > > I'm running into problems with downloading a large image > from Tornado to the target. The target is MPC 860. Has > anyone run into a similar problem? The image is about > 47 meg. In the target server, I've modified the memory > cache size to be large enough. The wdb agent on the > target gives an exception and gets restarted. > > Anisa > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: remote load and startup Date: Thu, 22 Feb 2001 04:41:26 GMT From: Pierre Frigon Organization: Excite@Home - The Leader in Broadband http://home.com/faster Message-ID: <3A9498A0.175DBAA9@yahoo.com> References: <3A92B843.75E23955@excite.com> <3A933406.F31AB055@yahoo.com> <3A93E379.694B0CE3@excite.com> If you rlogin to the target you are using a target based shell to run your rlogin session on thge target. Not the host shell that the Tornado IDE provides. These are two different things. David Zempel wrote: > I believe that you are wrong about this. We currently rlogin to our > target and then use the windsh command nfsMount to mount a host file > system to the target. This is then followed by a load command that loads > a command file that is on that system. > The essence of my original question is, "How can I get the target to > accept these same commands via a a remsh or rsh command from the host?" > After persuing the script further that is in my original question, I've > discovered that there is no way that a redirect of standard input would > work in conjunction with a rlogin command, even between two unix > systems. > > Automatically loading a script that mounts the file system and executes > a startup script at boot is out of the question due to security > concerns. Otherwise, that would probably be the ideal solution. Thanks > anyway. > > Still looking for a solution, David. --------------------------- Newsgroups: comp.os.vxworks Subject: DWDM Date: Wed, 21 Feb 2001 22:30:50 -0800 From: "Charles Weitzer" Organization: MindSpring Enterprises Message-ID: <972bnf$flh$2@slb0.atl.mindspring.net> I have an opportunity with a pre-IPO company in San Jose that provides intelligent multiservice optical networks. The management team has previously started and sold two companies to Cisco. The Company offers significant stock options, a full insurance package, 401K and more. The team's product is an all-in-one terabit optical transport, switching and service intelligence system. Simplified dynamic provisioning of multi-protocol services economic scalability from SONET/SDH to wavelength switching is all part of this architecture. Solutions can be deployed in a multitude of topologies, collapsing overlay networks onto a single integrated optical platform. Current opportunities include, but are not limited to: Senior Optical Networking Engineers Advanced Optical degree, 10+ years experience Extensive experience in DWDM, WDM, MPLS, SONET, ATM, IP, PNNI, RSVP, OSPF, BGP, DCS, ADM and OADM Embedded SNMP Agent Senior Software Engineer Develop SNMP agent for optical network systems, including defining SNMP MIBS, and agent architecture. 4+ years Embedded Software development in C, SNMP agent architectures, MIBs, VxWorks. Embedded Command Line Interface Senior Software Engineer Develop command line interface for optical network systems. 4+ years Embedded Software development, TL-1 CLI development, SONET transmission management, VxWorks. Embedded SNMP Agent and CLI Project Lead Develop SNMP agent and command line interfaces. Extensive experience with Embedded Software Development, 2+ years project lead, SNMP agent architectures, CLI, VxWorks. Network Management System Senior Software Engineer - Back-end Develop scalable network management system for optical network systems. Experience in RDBS, OOP in JAVA, CORBA, SNMP, TMN, VxWorks. NMS Senior GUI SE Develop GUI for scalable network management system for optical network systems. Extensive experience with GUI design, JAVA (Swing/AWT), OOP in JAVA, SNMP, TMN, VxWorks. Staff Engineer Will be a critical member working on the development of timer, semaphore, memory management services and debug tracing. VxWorks is a must. Knowledge in multi-tasking, loosely coupled distributive computing, memory management, locking is critical. Staff Engineer Work on switching fabric management. Extensive experience with ATM, TDM, Routers, Switches, SONET, VxWorks. If you or anyone you know of would be interested in any of these positions, please contact me at your earliest convenience. Sincerely, Charles Weitzer weitzer@ix.netcom.com V(510)558-9182 F(509)694-5175 --------------------------- Newsgroups: comp.os.vxworks Subject: Re: File I/O through Serial Link on RAD6000 Date: Thu, 22 Feb 2001 07:16:51 GMT From: "Corey Ashford" Organization: Excite@Home - The Leader in Broadband http://home.com/faster Message-ID: References: <96ho3h$928$1@pith.uoregon.edu> If you can get PPP going, you could NFS mount the filesystems onto the target, or use the ftp/rsh filesystems. "Anthony A. Salazar" wrote in message news:96ho3h$928$1@pith.uoregon.edu... > VxWorks Tornado > > > Hi folks, > > > My current configuration is a RAD6000 booting VxWorks 5.3.1 (RAD6000 BSP) > over a serial line (ttya) from a Sun. I use Tornado V1.0.1 to communicate > with VxWorks on a Boeing RAD6000. I belive Tornado uses Wind Rivers WDB > protocol to communicate with the host via Virtual I/O Channels. > > > Is there a way to access files on the host(sun) from the target (RAD6000) > over the serial line? Are the WTX host tools a possible avenue > or are they just for use on the host side (sun)? > > > Any suggestions would be greatly appreciated. > > > Thanks, > Anthony Salazar > > > > > More Details: > > > At login we redirect Stdin, Stdout and Stderr > via a windsh.tcl script: > > > shParse {ioGlobalStdSet (0,vf0)} ; > shParse {ioGlobalStdSet (1,vf0)} ; > shParse {ioGlobalStdSet (2,vf0)} ; > shParse {logFdAdd (vf0)} ; > > > > When I issue devs and iosDrvShow I get: > -> devs > drv name > 0 /null > 3 /vio > value = 0 = 0x0 > > > -> iosDrvShow > drv create delete open close read write > ioctl > 1 7f160 0 7f160 0 7fc40 7fb30 7f168 > 2 0 0 6f014 0 6f080 6f0fc 6f240 > 3 8a0ac 0 8a0ac 8a228 7fc40 7fb30 8a2bc > value = 0 = 0x0 > - > > > I can do things like: > > > #include "vxWorks.h" > #include > > > int CFErun(void) > { > while(1) > { > fgets(data,256,stdin); > if(data[0] == 'q') > return 1; > else > printf("I get something\n"); > } > } > > > but if I try to do file I/O instead I never get a valid file descriptor: > > > if ((Fd=fopen("test2","r")) != NULL) > printf("Fd = %d\n",Fd); > else > printf(" Couldn't open file !\n"); > > > numread=fread(&dummy,sizeof(unsigned long),1,Fd); > printf("Numread = %d dummy = %#010x\n",numread,dummy); > > > mystatus=fclose(Fd); > printf("Close status = %d\n",mystatus); > > > > > > **************************************************************************** > ** > Anthony A. Salazar NIS-3 \ DAPS \ CIBOLA > Los Alamos National Laboratory Telephone: (505) > 667-2508 > Nonproliferation International Security (NIS) Fax: (505) 665-4197 > P.O. Box 1663, MS:D440 > E-Mail:aasalazar@lanl.gov > Los Alamos, NM 87545 > **************************************************************************** > ** > > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: T2 man pages??? Date: Thu, 22 Feb 2001 07:27:00 GMT From: "Corey Ashford" Organization: Excite@Home - The Leader in Broadband http://home.com/faster Message-ID: <8b3l6.456515$U46.13556324@news1.sttls1.wa.home.com> References: <96h9ta$kks$1@overload.lbl.gov> <3A8D3C72.FBF1BECF@lmco.com> <3A8D866F.E07AFAF2@lmco.com> With all due respect, you guys ought to consider taking a leap into the late 90's ;-) What Tornado 2 needs is not Unix style man pages, but a good search engine for their HTML pages. Something like altavista's advanced search engine would be nice. Something where you could search for things like "boot NEAR rom NEAR (image OR file)". "Joe Durusau" wrote in message news:3A8D866F.E07AFAF2@lmco.com... > I suppose that there are several parts to the answer. > > 1). We normally do development from remote systems via a telnet > interface, and use the gui only when it gives us something useful, > (which is not often). > > 2). If you type man -k you may get as many as 20 or 30 hits, > and I can't imagine a browser popping up that many pages at once. > > 3). Running a gui interface slows down every computer I have ever used > by at least tenfold. I don't like that. > > 4). I too, an burdened with windoz (nt 4.0, it happesn). But for more > sophisticated operations, I prefer unix or dos command line operations. > > Anyhow, I sincerely hope somebody develops a script to gen up man > pages so those of us who wish to do so can dump the html junk. > > Speaking only for myself, > > Joe Durusau > > > Dave Korn wrote: > > > > Joe Durusau wrote in message <3A8D3C72.FBF1BECF@lmco.com>... > > > True, I've kept the old pages as well, but I assume that there might > > >be some differences in T2 that are worthwhile. In that case, I have to > > >write something to gen up new man pages or somehow get around the > > >problem. > > >I wondered why so many strange questions about functions were seen in > > >this ng > > >until I realized that the man pages had been stupidly deleted. > > > > Windows users (like me) have a very handy searchable interface that > > indexes every function in the reference manual HTML and opens up a browser > > at the relevant page. Is there really nothing equivalent on Solaris (or > > whatever non-windows) systems? Or is it that people aren't running the > > necessary X or whatever windowing gui might be needed? > > > > DaveK > > -- > > They laughed at Galileo. They laughed at Copernicus. They laughed at > > Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Better Allocator than memLib?? Date: Thu, 22 Feb 2001 07:45:30 GMT From: "Corey Ashford" Organization: Excite@Home - The Leader in Broadband http://home.com/faster Message-ID: References: <3A941A3C.1459A93F@voxware.com> There was a similar question asked recently. Here was the response: Kevin Cline wrote: > This must be a FAQ, but I'm looking > for a drop-in replacement for the pessimal > malloc supplied by WRS. Any suggestions? Has anyone > tried GNU malloc or a variation thereof? > Any other options? Seaweed Systems has a written-from-scratch memLib replacement. It has all the functionality which Wind River's memLib has...and more! It has better fragmentation behavior, memory leak detection, sanity checks at malloc/realloc/free time, user-callable memory arena sanity checker, constant-time allocation, callbacks for various low-memory conditions, and more! A real ginzu knife of an app. Please call or email for information: bob@seaweed.com +1 425.895-1721 "Craig Vanderborgh" wrote in message news:3A941A3C.1459A93F@voxware.com... > Hi all: > > We are using memLib (specifically calloc, malloc, et al.) in our > application and we're having severe problems with memory fragmentation. > Our application no longer has any memory leaks. We're > "fragmenting to death" though... > > Our application does speech recognition, synthesis, and a number > of other things that rely on a competent dynamic memory manager, > which memLib apparently is not. Is there a better alternative > for a memory allocator that we're not aware of? We're thinking > about writing our own, but we don't want to "reinvent the wheel" > if we don't have to. > > Any comments, suggestions would be greatly appreciated. > > Thanks! > Craig Vanderborgh > Voxware Incorporated --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Interrupt:dc0 no carrier error Date: 22 Feb 2001 09:40:41 GMT From: Juergen Naumann Organization: Uni Dortmund, Physik Message-ID: <972mqp$1pn$1@nx6.HRZ.Uni-Dortmund.DE> References: <96d7qr$d2$1@overload.lbl.gov> <3A8D3945.C15BA2B6@space.at> Reply-To: naumann@Physik.Uni-Dortmund.DE Hi ols wrote: > My advise would be: try hanging the target on another (brand/kind) > hub/repeater/host or whatever you directly connect the target to. We are also using MVME2400-Boards and observed the same problem. Since we would like to run the network with 100MB/Full Duplex we had to find a solution. After installing the patch T2CP3 and downloading a newly built VxWorks the problem dissapeared. We were able to run the board with a point to point connection ("crossed cable") to the server machine without an error message. Best regards, - -- Jürgen Naumann e----------------------------->H1<---------------------------p --------------------------- Newsgroups: comp.os.vxworks Subject: Re: using startup script Date: Thu, 22 Feb 2001 10:18:15 GMT From: a.betsche@steinbichler.de (Andi Betsche) Organization: Newsfeeds.com http://www.newsfeeds.com 73,000+ UNCENSORED Newsgroups. Message-ID: <3a94e603.10145188@news.ronet.de> References: <3a93b197.104164821@news.ronet.de> Hello Dave, thanks for your advice. The problem was that I configured my SCSI-Disk in usrAppInit() which is called AFTER the startup script is executed. If I configure the Disk in sysScsiConfig() it works fine. - -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! - -----== Over 80,000 Newsgroups - 16 Different Servers! =----- --------------------------- Newsgroups: comp.os.vxworks Subject: PPC 821/823 with passive LCD display Date: Thu, 22 Feb 2001 11:13:58 +0100 From: Emmanuel Herbreteau Organization: SEPRO Robotique (BEP) Message-ID: <3A94E666.443A0D2C@sepro-robotique.com> Hi, I'm working on VxWorks 5.4 with Zinc 6 on a custom board based on MPC 823 (very similar to 821, with some little enhancement and mods). The passive color LCD display (8 bits data interface) connected to port D is not working correctly. I get FIFO underrun from the LCD controller. Althought, despite I set the pixel clock to 10,6 Mhz (32 Mhz divide by 3), I only get a pixel clock of 7 Mhz and refresh rate of 56 Hz (instead of 89). It seems that the SDMA does not correctly filled the LCD FIFO. (too slow)(SDCR=0x01). All I get is a sad picture with vertical (unwanted !) colored row and a low contrast (but the test picture is still recognizable). Any idea ???? Thanks a lot. - -- Emmanuel (SEPRO Robotique, France) --------------------------- Newsgroups: comp.os.vxworks Subject: Re: using startup script Date: Thu, 22 Feb 2001 10:20:54 GMT From: a.betsche@steinbichler.de (Andi Betsche) Organization: Newsfeeds.com http://www.newsfeeds.com 73,000+ UNCENSORED Newsgroups. Message-ID: <3a94e7c4.10594934@news.ronet.de> References: <3a93b197.104164821@news.ronet.de> <9718up$t0j$1@uranium.btinternet.com> Hello David, thanks for your advice, but the file usrNetwork.c is not used in my configuration. The problem was that I configured my SCSI-Disk in usrAppInit() which is called AFTER the startup script is executed. If I configure the Disk in sysScsiConfig() it works fine. Bye. - -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! - -----== Over 80,000 Newsgroups - 16 Different Servers! =----- --------------------------- Newsgroups: comp.os.vxworks Subject: Re: taskDelay problem Date: Thu, 22 Feb 2001 10:23:16 GMT From: a.betsche@steinbichler.de (Andi Betsche) Organization: Newsfeeds.com http://www.newsfeeds.com 73,000+ UNCENSORED Newsgroups. Message-ID: <3a94e83d.10715858@news.ronet.de> References: <9717lo$hnl$1@overload.lbl.gov> Hello Diego, maybe taskDelay() returns with an ERROR code and your task continues? See manual entry for taskDelay(). Bye. - -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! - -----== Over 80,000 Newsgroups - 16 Different Servers! =----- --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 10:16:31 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> Optional Identity wrote in message ... >According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 >+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >obviously gratuitous attention seeking statement into the aethyr of >alt.usenet.kooks : > >>Dave Korn wrote: >> >>> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >>> <96uoe3$qr0$4@intimidator.databasix.com>... >>> >Dave Korn wrote: >>> > >>> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >>> >> <96qpcd$fr2$1@intimidator.databasix.com>... >>> >> >Optional Identity wrote: >>> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >>> >> >> >> >> >> >> >> >:( >>> >> >> >> >> >> >> >> >:( DaveK >>> >> >> >> >> >> >> >> > >>> >> >> >> >> >> >> >> >That's nice to know >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> It's not cool either! >>> >> >> >> >> >> >> > >>> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >>> >> >> >> >> >> >> > >>> >> >> >> >> >> >> Only for a short time, though. >>> >> >> >> >> >> > >>> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >>> >> >> >> >> >> > >>> >> >> >> >> >> Yeah that too. >>> >> >> >> >> > >>> >> >> >> >> >It's an unfortunate part of life that we have to live with. >>> >> >> >> >> >Kinda of like work, taxes and death. >>> >> >> >> >> > >>> >> >> >> >> And sleep. >>> >> >> >> > >>> >> >> >> >Sleep aint to bad when you get enough that is. >>> >> >> >> > >>> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >>> >> >> > >>> >> >> >Well the trick to that is just to drink so much that you actually get >>> >> >> >pisster while you sleep. Generally in a big pissup session, you >>> don't >>> >> >> >actually peack at your pisstest until an hour or 2 after you stop. >>> >> >> >So you hit it really hard, and you should peak until a few hours >>> after, >>> >> >> >but you go to bed straight after stopping and you will get pissed >>> while >>> >> >> >you sleep. EASY. >>> >> >> > >>> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. >>> >> > >>> >> >You have to be difficult don't you? Ok, set your alarm so that every >>> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >>> >> >pissed. See there's are way around everything. >>> >> > >>> >> >>> >> I find that an IV drip by my bed with a couple of bags of vodka >>> generally >>> >> keeps me pissed through the night... >>> >> >>> >> DaveK >>> > >>> >Oh, I'm always on the lookout for new ways to get smeshed. >>> >Do you have to have a large knowledge of medicine to be able to set >>> >this up? And how do I get my hands on the equipment? >>> >>> Well it's probably quite important to get the drip rate right, you don't >>> want *too* much blood in your alcohol system! I think one of those machines >>> they give people for self-administering doses of morphine should do the job >>> nicely, you could just tape the button down before you fell asleep. >>> >>> DaveK >> >>Or if you could just get your hands on morphine........ >> >Don't start with the morphine!!! I just love opiates.... > >Sorry, I think I must have nodded off for a while, what were we >talking about? I thought I noticed your eyes roll back in your head until all I could see were the whites... DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Thu, 22 Feb 2001 10:18:41 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 >+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >obviously gratuitous attention seeking statement into the aethyr of >alt.usenet.kooks : > >>Optional Identity wrote: >> >>> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 >>> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>> obviously gratuitous attention seeking statement into the aethyr of >>> alt.usenet.kooks : >>> >>> >Optional Identity wrote: >>> > >>> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:50:21 >>> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>> >> obviously gratuitous attention seeking statement into the aethyr of >>> >> alt.usenet.kooks : >>> >> >>> >> >Optional Identity wrote: >>> >> > >>> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:22:13 >>> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>> >> >> obviously gratuitous attention seeking statement into the aethyr of >>> >> >> alt.usenet.kooks : >>> >> >> >>> >> >> >Optional Identity wrote: >>> >> >> > >>> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:52:54 >>> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >>> >> >> >> alt.usenet.kooks : >>> >> >> >> >>> >> >> >> >Optional Identity wrote: >>> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being that most people >>> >> >> >> >> >are too >>> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that need to drink more. >>> >> >> >> >> >>>> >:(>> >>> > >>> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it *is* their fault!! >>> >> >> >> >> >>>> >:(>> >> >>> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid >>> >> >> >> >> >cause >>> >> >> >> >> >>>> >:(>> >>they are sober. >>> >> >> >> >> >>>> >:(>> > >>> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? >>> >> >> >> >> >>>> >:(>> > >>> >> >> >> >> >>>> >:(>> > DaveK >>> >> >> >> >> >>>> >:(>> >>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are stupid? >>> >> >> >> >> >>>> >:(> >>> >> >> >> >> >>>> >:(>He could have a point. >>> >> >> >> >> >>>> >:( >>> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. >>> >> >> >> >> >>>> >:( >>> >> >> >> >> >>>> >:( DaveK >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> >That's nice to know >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> It's not cool either! >>> >> >> >> >> >>> >>> >> >> >> >> >>>Unfortunately it is sometimes necessary. >>> >> >> >> >> >>> >>> >> >> >> >> >>Only for a short time, though. >>> >> >> >> >> > >>> >> >> >> >> > Preferably no longer than it takes to open the next bottle.... >>> >> >> >> >> > >>> >> >> >> >> Or hip-flask, if you chance to be at work. >>> >> >> >> > >>> >> >> >> >Or in your slurpie if you are in a dry area.... >>> >> >> >> >The cops don't have a clue. :) >>> >> >> >> > >>> >> >> >> The old vodka in the fruit salad trick. :) >>> >> >> > >>> >> >> >That works too, I got so shit face at my brothers 21st with that one. >>> >> >> >Oh and the second hand smoke had a part to play. >>> >> >> > >>> >> >> I find when doing both it's best to do the pot first. >>> >> > >>> >> >I don't really smoke pot myself, but if someone is doing it near me, >>> >> >I wont complain too much..... >>> >> > >>> >> It can interfere with ones consumption of alcohol. >>> > >>> >If not done in the correct manner I am sure it could. So I usually don't >>> >take that risk, pluss if I'm ever stoned I just sit there and veg out, I >>> >can't move at all. That's not fun at all. >>> > >>> I know what you mean!! I too just veg out!! and can't drink enough, >>> that ca't be right, huh? >> >>Definetly unacceptable... Though if I drink alot then smoke a bit, then >>I don't veg out, though I don't often do this. >> >I try to avoid it when I am horribly pissed, it just makes me fall >asleep. It takes years of practise and intensive yogic training to be able to drink yourself silly and then smoke yourself stupid without pukeing or passing out... Fortunately the practise is rewarding in and of itself :-D DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. >-- > >Optional Identity > >Insane Cross-Poster: MEOW! >Another Fine Post from the Petitmorte Family of Fine Posters, >Hace you had your little death today? >N'est ce pas? >http://www.petitmorte.net/castle.shtml (The Saga Continues) >Skepticult Rank: Colonel >Skepticult Serial Number: 321-29337-833 >I am a lamer! --------------------------- Newsgroups: comp.os.vxworks Subject: Re: what does mean the warning "trigraph(s) encountered" Date: Thu, 22 Feb 2001 10:20:58 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <96vgsv$h40$1@news.etri.re.kr> <9719h2$iso$1@neptunium.btinternet.com> David Laight wrote in message <9719h2$iso$1@neptunium.btinternet.com>... >RTFM! > >In this case ANSI C - try K&R 2. > >Trigraphs are horrid beasts invented by the ANSI C committe way back in the >mid 1980s in order to make C source readable on terminals/printers with >non-US/UK 7-bit character sets. In particular those where [ ] ^ \ { } ` etc >are accented characters rather than punctuation. > >Any sequence ??x (in C source) is replaced by a single other character. >I don't know the mappings, but suspect: > ??( is [ > ??/ is \ >there are about a dozen of them. > >You probably have ??? in a string somewhere... >(you can subvert things by concatenating strings - "abc" "def" is identical >to "abcdef") > >Trigraphs are thus valid C - but almost certainly not what you had in mind. I'm pretty sure that Gcc *ignores* them by default, and the warning is to let you know that if by any remote chance you *did* want a trigraph, you have to use the -trigraphs switch to enable them. So there's no need to concatenate strings to avoid them, unless portability to very old compilers is an issue for you! You could probably add -Wno-trigraphs to your build flags. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: problem when loading vxWorks image Date: Thu, 22 Feb 2001 10:26:40 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <_AUk6.18466$Sl.797153@iad-read.news.verio.net> Jason Jiang wrote in message <_AUk6.18466$Sl.797153@iad-read.news.verio.net>... >I specified a vxWorks image in the boot line and booted the processor up. >Then I opened Hyper Terminal (serial port) and want to load the same vxWorks >image from the host into the SDRAM. I tried both 'ld' and 'loadModule' and >got the same response: it prompted one or several characters like 'm', 'ma', >or 'mach' and stoped. no more prompts. The image was about 1.2M big (I could >load a file which was much bigger than it). What's the matter? Please >help!!! Sounds like it's crashed. You didn't mention the architecture but if you're running on PPc then that's the first few letters of "machine check exception" it's probably printing out there. This isn't very surprising if you tried to load your boot image as a downloadable module. It either won't work, or it will download itself on top of the running OS, or interfere with it in some other way. Why on earth do you even want to do such a strange thing? DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: large downloadable image Date: Thu, 22 Feb 2001 10:28:55 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: Serge Sarraillon wrote in message ... >"Anisa Parikh" wrote in message >news:LGUk6.18470$Sl.797118@iad-read.news.verio.net... >> >> I'm running into problems with downloading a large image >> from Tornado to the target. The target is MPC 860. Has >> anyone run into a similar problem? The image is about >> 47 meg. In the target server, I've modified the memory >> cache size to be large enough. The wdb agent on the >> target gives an exception and gets restarted. > >you should use 'objcopy' to strip your file... >(in my case my application file went down from 15 Meg to 2 Meg) Unless you want the debugger to be of any use. I'd say try giving the target server a *much* bigger cache than the image size - anywhere between 50% - 100% extra again - and see if that fixes the problem. I've found it necessary with my huge project, and I had the same symptom. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: symbol table Date: Thu, 22 Feb 2001 14:35:26 GMT From: kimp@avtecinc.com (Kim Putnam) Organization: Info Avenue Internet Services Message-ID: <3a952348.7517453@192.168.1.214> References: <3a914ccc.15023953@192.168.1.214> <8dyk6.435$yi4.421447@newsr1.u-net.net> <3a92b58c.11383515@192.168.1.214> I forgot about nm. The symbol name was _symbol in nm output. I used symFindByName, and what do you know It was successful. I will try declaring the funcs with extern "c" to see if this makes a differnce as well. Thanks for the help.. K On Wed, 21 Feb 2001 15:31:14 -0000, "Dave Korn" wrote: >Kim Putnam wrote in message <3a92b58c.11383515@192.168.1.214>... >>My thoughts as well. Not sure how to resolve it thought. The >>symFindByCName was not in my documentation either. I found it declared >>in symLib.h, and a tcl script as well. > > Try declaring any functions that must be looked up in the symbol table as >extern "C". You'll have to make do without having overloaded functions as >entry points, but I'm sure you can work round that. > > Alternatively you could work out the name mangling by looking at the >output from nm on the module containing your entry point function, and >hardcode the mangled path into the call to symfindByName, but that would be >going about it the hard way... > > DaveK >-- >They laughed at Galileo. They laughed at Copernicus. They laughed at >Columbus. But remember, they also laughed at Bozo the Clown. > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: problem when loading vxWorks image Date: Thu, 22 Feb 2001 10:14:39 -0500 From: "Jason Jiang" Organization: Verio Message-ID: References: <_AUk6.18466$Sl.797153@iad-read.news.verio.net> The reason I wanted to do this is: When we get a blank board, we use Vision Click to burn the boot program into the boot flash. After that, we will deliver the board to the customers. While the customers don't have Vision Click and it's possible for us to update the boot program, we have to do it by ourselves. Furtunetaly, I solved this problem. I didn't use 'ld' function. I opened the boot program on the host by fopen(), fread() into the memory, then burn it into the boot flash. That's all. It's working fine. Thanks for the concerns. "Dave Korn" wrote in message news:eH7l6.518$yi4.488059@newsr1.u-net.net... > Jason Jiang wrote in message > <_AUk6.18466$Sl.797153@iad-read.news.verio.net>... > >I specified a vxWorks image in the boot line and booted the processor up. > >Then I opened Hyper Terminal (serial port) and want to load the same > vxWorks > >image from the host into the SDRAM. I tried both 'ld' and 'loadModule' and > >got the same response: it prompted one or several characters like 'm', > 'ma', > >or 'mach' and stoped. no more prompts. The image was about 1.2M big (I > could > >load a file which was much bigger than it). What's the matter? Please > >help!!! > > Sounds like it's crashed. You didn't mention the architecture but if > you're running on PPc then that's the first few letters of "machine check > exception" it's probably printing out there. > > This isn't very surprising if you tried to load your boot image as a > downloadable module. It either won't work, or it will download itself on > top of the running OS, or interfere with it in some other way. > > Why on earth do you even want to do such a strange thing? > > DaveK > -- > They laughed at Galileo. They laughed at Copernicus. They laughed at > Columbus. But remember, they also laughed at Bozo the Clown. > > --------------------------- Newsgroups: comp.os.vxworks Subject: Debugging with MMU Enabled Date: Thu, 22 Feb 2001 15:25:10 -0000 From: "Kelvin Lawson" Message-ID: <973b0g$ng5gc$1@ID-56276.news.dfncis.de> Is it possible to have basic MMU enabled while debugging with visionCLICK/ICE PowerPC JTAG debuggers ? We can step through usrInit() and some of usrRoot(), however the debugger hangs during usrMmuInit(). Specifically the last call it makes is to vmBaseGlobalMapInit(). After this call the PC becomes 0x00000000, and if you step it goes back to 0xFFFFFFFC. It is actually possible to set a hardware breakpoint much further into the code, and the code does reach the breakpoint, however as soon as BKM mode kicks in you become unable to step any further. We're using a PPC755 on the Scout board. We can debug if we turn MMU off, or we can use the T2 debugger, but we'd like to find a way to use vCLICK with MMU enabled. Any ideas much appreciated. Cheers, Kelvin. --------------------------- Newsgroups: comp.os.vxworks Subject: DNS source code Date: Thu, 22 Feb 2001 11:15:30 -0500 From: "Alexandre Gouraud" Organization: Nortel Message-ID: <973dv4$a1h$1@bmerhc5e.ca.nortel.com> I am looking for C source code for a Domain Name Server runing on VxWorks. Does anyone have a link or something ? Thanks --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Debugging with MMU Enabled Date: Thu, 22 Feb 2001 17:21:19 GMT From: Bill Pringlemeir Organization: Factory of the mind Message-ID: References: <973b0g$ng5gc$1@ID-56276.news.dfncis.de> Sender: bpringlemeir@DeadDuck >>>>> "Kelvin" == Kelvin Lawson writes: Kelvin> Is it possible to have basic MMU enabled while debugging with Kelvin> visionCLICK/ICE PowerPC JTAG debuggers ? Yes... JTAG/BDM, etc are cores on the chip. They know about caches and such things. Emulators would give you a problem, but they have gone the way of the dinosaur... Kelvin> We can step through usrInit() and some of usrRoot(), however Kelvin> the debugger hangs during usrMmuInit(). Specifically the last Kelvin> call it makes is to vmBaseGlobalMapInit(). After this call Kelvin> the PC becomes 0x00000000, and if you step it goes back to Kelvin> 0xFFFFFFFC. The reason this happens is that when the MMU in enabled, the code uses the processor pipeline as temporary memory to store some code. The address space will change under your feet as the current code changes to the MMU version. Typical MMU switching involve. Enable MMU nop nop Jump to new code (this is in the pipeline)... Usually debuggers that single step do not emulate this behaviour. I have seen this used in copy protection schemes to try and prevent people from stepping through the code... This is some thing that a 16 year old can understand ;-) Kelvin> It is actually possible to set a hardware breakpoint much Kelvin> further into the code, and the code does reach the Kelvin> breakpoint, however as soon as BKM mode kicks in you become Kelvin> unable to step any further. We're using a PPC755 on the Scout Kelvin> board. Kelvin> We can debug if we turn MMU off, or we can use the T2 Kelvin> debugger, but we'd like to find a way to use vCLICK with MMU Kelvin> enabled. Any ideas much appreciated. Can you use the T2 debugger with the MMU enabled? It is not clear from what you have said. I can only speculate without this information. hth, Bill - -- ALFRED JARRY! Say something about th' DEATH of DISCO!! Useful vxWorks URLS, "http://www.xs4all.nl/~borkhuis/vxworks/vxworks.html" "http://www.xs4all.nl/~borkhuis/vxworks/vxw_pt9.html" --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Debugging with MMU Enabled Date: Thu, 22 Feb 2001 10:40:22 -0800 From: Christopher A Leddy Organization: Raytheon Company Message-ID: <3A955D16.7D8A001B@west.raytheon.com> References: <973b0g$ng5gc$1@ID-56276.news.dfncis.de> I worked on debugging a BSP on a PPC603, so this may or may not apply. My guess is your code or hardware is triggering an exception before you effectively have exception code to handle it. The PPC603 has two exception vector locations, one in high memory and one in low memory. The high memory version is usually in FLASH/ROM/Etc and is used only until the low memory version (in RAM) is initialized. Boot code has to set up code in the low vectors then switch a bit in the MSR register (IP) use the low vector locations. The debuggers usually highjack these RAM vectors for use while single stepping, breakpoints, etc. When you are debugging ROM code, before the vectors are switched, the processor uses the high vectors and is stuck with whatever code is there (usually a 'do nothing' routine or garbage). This severely limits your ability to deal with exceptions properly until the exception vectors are spun down into low memory. When an exception occurs when the vectors are high, you usually spin off into never, never land. Setting breakpoints in this initial code suck also, you are usually limited to the one hardware breakpoint, since the "emulator" has to be able to replace a valid instruction with a software break. And don't get me started about how the "emulator" needs all the SDRAM parameters set just to run code (its related to the nonsense above). Hope it helps, Chris Kelvin Lawson wrote: > > Is it possible to have basic MMU enabled while debugging with > visionCLICK/ICE PowerPC JTAG debuggers ? > > We can step through usrInit() and some of usrRoot(), however the debugger > hangs during usrMmuInit(). Specifically the last call it makes is to > vmBaseGlobalMapInit(). After this call the PC becomes 0x00000000, and if you > step it goes back to 0xFFFFFFFC. > > It is actually possible to set a hardware breakpoint much further into the > code, and the code does reach the breakpoint, however as soon as BKM mode > kicks in you become unable to step any further. We're using a PPC755 on the > Scout board. > > We can debug if we turn MMU off, or we can use the T2 debugger, but we'd > like to find a way to use vCLICK with MMU enabled. Any ideas much > appreciated. > > Cheers, > Kelvin. --------------------------- Newsgroups: comp.os.vxworks Subject: Unix to Win platform Date: Thu, 22 Feb 2001 10:16:15 -0800 From: "Tan, Tat Kin" Organization: Lawrence Berkeley National Laboratory Message-ID: <973oh8$hoh$1@overload.lbl.gov> Greetings all, Previously we developed some Apps and compiled the image under a project, say Proj1. It's all done in Unix environment (makefile). Now what i want to do is, to use T2 Win base instead of Unix. Basically to port the entire collections of source files into T2 Win, maintaining the original directory structure. I understand that in Windows based Tornado2.0, there is a facility that allow you to add projects to workspace (under File) but that will require ".pwj" file to describe the structure. In Unix, there is no such thing. My problem is, instead of rebuilding the entire project, how can i port Proj1 to Win T2? And so that when building the image, it works exactly the same as Unix make. Any taker? Million thanks in advance. Rgds, tatkin --------------------------- Newsgroups: comp.os.vxworks Subject: VxWorks developers needed in Central NJ Date: 22 Feb 2001 20:37:01 GMT From: maddog4911@aol.com (Maddog4911) Organization: AOL http://www.aol.com Message-ID: <20010222153701.05742.00005001@ng-md1.aol.com> Senior VxWorks developers are needed for permanent positions in Central New Jersey. If interested please call Rick Maddock toll-free at 866-233-5115. Thank you. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Unix to Win platform Date: Thu, 22 Feb 2001 20:42:17 GMT From: rjdejoie@kmrmail.kmr.ll.mit.edu (Bob DeJoie) Message-ID: <3a9577fc.254627795@news> References: <973oh8$hoh$1@overload.lbl.gov> Hi, I come from a Unix back ground and created custom makefiles under T1. I found that the version of Gnu make that comes with Tornado was not able to do recursive make calls so instead used the version that comes with bash. When we went to T2 nothing much changed. I am building from a bash window and not from inside the IDE. On Thu, 22 Feb 2001 10:16:15 -0800, "Tan, Tat Kin" wrote: >Greetings all, > >Previously we developed some Apps and compiled the image under a project, >say Proj1. It's all done in Unix environment (makefile). Now what i want to >do is, to use T2 Win base instead of Unix. Basically to port the entire >collections of source files into T2 Win, maintaining the original directory >structure. I understand that in Windows based Tornado2.0, there is a >facility that allow you to add projects to workspace (under File) but that >will require ".pwj" file to describe the structure. In Unix, there is no >such thing. > >My problem is, instead of rebuilding the entire project, how can i port >Proj1 to Win T2? And so that when building the image, it works exactly the >same as Unix make. Any taker? Million thanks in advance. > >Rgds, >tatkin > ================================================ Bob DeJoie Kwajalein Missile Range Republic of the Marshall Islands email: rjdejoie@kmrmail.kmr.ll.mit.edu     phone: 805-355-5855 fax: 805-355-3833 Time Zone: GMT +12 hours                      ================================================ --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 07:53:35 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:16:31 - -0000, the Troll "Dave Korn" Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote in message ... >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>obviously gratuitous attention seeking statement into the aethyr of >>alt.usenet.kooks : >> >>>Dave Korn wrote: >>> >>>> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >>>> <96uoe3$qr0$4@intimidator.databasix.com>... >>>> >Dave Korn wrote: >>>> > >>>> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >>>> >> <96qpcd$fr2$1@intimidator.databasix.com>... >>>> >> >Optional Identity wrote: >>>> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >>>> >> >> >> >> >> >> >> >:( >>>> >> >> >> >> >> >> >> >:( DaveK >>>> >> >> >> >> >> >> >> > >>>> >> >> >> >> >> >> >> >That's nice to know >>>> >> >> >> >> >> >> >> >>>> >> >> >> >> >> >> >> It's not cool either! >>>> >> >> >> >> >> >> > >>>> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >>>> >> >> >> >> >> >> > >>>> >> >> >> >> >> >> Only for a short time, though. >>>> >> >> >> >> >> > >>>> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >>>> >> >> >> >> >> > >>>> >> >> >> >> >> Yeah that too. >>>> >> >> >> >> > >>>> >> >> >> >> >It's an unfortunate part of life that we have to live with. >>>> >> >> >> >> >Kinda of like work, taxes and death. >>>> >> >> >> >> > >>>> >> >> >> >> And sleep. >>>> >> >> >> > >>>> >> >> >> >Sleep aint to bad when you get enough that is. >>>> >> >> >> > >>>> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >>>> >> >> > >>>> >> >> >Well the trick to that is just to drink so much that you actually >get >>>> >> >> >pisster while you sleep. Generally in a big pissup session, you >>>> don't >>>> >> >> >actually peack at your pisstest until an hour or 2 after you >stop. >>>> >> >> >So you hit it really hard, and you should peak until a few hours >>>> after, >>>> >> >> >but you go to bed straight after stopping and you will get pissed >>>> while >>>> >> >> >you sleep. EASY. >>>> >> >> > >>>> >> >> Yeah I do this too, but after sleeping for a while I sober up >anyway. >>>> >> > >>>> >> >You have to be difficult don't you? Ok, set your alarm so that >every >>>> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >>>> >> >pissed. See there's are way around everything. >>>> >> > >>>> >> >>>> >> I find that an IV drip by my bed with a couple of bags of vodka >>>> generally >>>> >> keeps me pissed through the night... >>>> >> >>>> >> DaveK >>>> > >>>> >Oh, I'm always on the lookout for new ways to get smeshed. >>>> >Do you have to have a large knowledge of medicine to be able to set >>>> >this up? And how do I get my hands on the equipment? >>>> >>>> Well it's probably quite important to get the drip rate right, you >don't >>>> want *too* much blood in your alcohol system! I think one of those >machines >>>> they give people for self-administering doses of morphine should do the >job >>>> nicely, you could just tape the button down before you fell asleep. >>>> >>>> DaveK >>> >>>Or if you could just get your hands on morphine........ >>> >>Don't start with the morphine!!! I just love opiates.... >> >>Sorry, I think I must have nodded off for a while, what were we >>talking about? > > I thought I noticed your eyes roll back in your head until all I could see >were the whites... > > DaveK Now I feel very bad, very bad indeed. I think I am dying.... - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 07:55:48 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:18:41 - -0000, the Troll "Dave Korn" Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote in message ... >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>obviously gratuitous attention seeking statement into the aethyr of >>alt.usenet.kooks : >> >>>Optional Identity wrote: >>> >>>> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 >>>> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>>> obviously gratuitous attention seeking statement into the aethyr of >>>> alt.usenet.kooks : >>>> >>>> >Optional Identity wrote: >>>> > >>>> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 >08:50:21 >>>> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>>> >> obviously gratuitous attention seeking statement into the aethyr of >>>> >> alt.usenet.kooks : >>>> >> >>>> >> >Optional Identity wrote: >>>> >> > >>>> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 >17:22:13 >>>> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated >this >>>> >> >> obviously gratuitous attention seeking statement into the aethyr >of >>>> >> >> alt.usenet.kooks : >>>> >> >> >>>> >> >> >Optional Identity wrote: >>>> >> >> > >>>> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 >13:52:54 >>>> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> >Expectorated this >>>> >> >> >> obviously gratuitous attention seeking statement into the >aethyr of >>>> >> >> >> alt.usenet.kooks : >>>> >> >> >> >>>> >> >> >> >Optional Identity wrote: >>>> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being >that most people >>>> >> >> >> >> >are too >>>> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that >need to drink more. >>>> >> >> >> >> >>>> >:(>> >>> > >>>> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it >*is* their fault!! >>>> >> >> >> >> >>>> >:(>> >> >>>> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. >They are stupid >>>> >> >> >> >> >cause >>>> >> >> >> >> >>>> >:(>> >>they are sober. >>>> >> >> >> >> >>>> >:(>> > >>>> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? >>>> >> >> >> >> >>>> >:(>> > >>>> >> >> >> >> >>>> >:(>> > DaveK >>>> >> >> >> >> >>>> >:(>> >>>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are >stupid? >>>> >> >> >> >> >>>> >:(> >>>> >> >> >> >> >>>> >:(>He could have a point. >>>> >> >> >> >> >>>> >:( >>>> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. >>>> >> >> >> >> >>>> >:( >>>> >> >> >> >> >>>> >:( DaveK >>>> >> >> >> >> >>>> > >>>> >> >> >> >> >>>> >That's nice to know >>>> >> >> >> >> >>>> >>>> >> >> >> >> >>>> It's not cool either! >>>> >> >> >> >> >>> >>>> >> >> >> >> >>>Unfortunately it is sometimes necessary. >>>> >> >> >> >> >>> >>>> >> >> >> >> >>Only for a short time, though. >>>> >> >> >> >> > >>>> >> >> >> >> > Preferably no longer than it takes to open the next >bottle.... >>>> >> >> >> >> > >>>> >> >> >> >> Or hip-flask, if you chance to be at work. >>>> >> >> >> > >>>> >> >> >> >Or in your slurpie if you are in a dry area.... >>>> >> >> >> >The cops don't have a clue. :) >>>> >> >> >> > >>>> >> >> >> The old vodka in the fruit salad trick. :) >>>> >> >> > >>>> >> >> >That works too, I got so shit face at my brothers 21st with that >one. >>>> >> >> >Oh and the second hand smoke had a part to play. >>>> >> >> > >>>> >> >> I find when doing both it's best to do the pot first. >>>> >> > >>>> >> >I don't really smoke pot myself, but if someone is doing it near me, >>>> >> >I wont complain too much..... >>>> >> > >>>> >> It can interfere with ones consumption of alcohol. >>>> > >>>> >If not done in the correct manner I am sure it could. So I usually >don't >>>> >take that risk, pluss if I'm ever stoned I just sit there and veg out, >I >>>> >can't move at all. That's not fun at all. >>>> > >>>> I know what you mean!! I too just veg out!! and can't drink enough, >>>> that ca't be right, huh? >>> >>>Definetly unacceptable... Though if I drink alot then smoke a bit, then >>>I don't veg out, though I don't often do this. >>> >>I try to avoid it when I am horribly pissed, it just makes me fall >>asleep. > > It takes years of practise and intensive yogic training to be able to >drink yourself silly and then smoke yourself stupid without pukeing or >passing out... Fortunately the practise is rewarding in and of itself :-D > > DaveK It gets easier when you are fully habituated to both. I still find it is better to smoke early in the night, and then drink. A couple of cones in the morning is good for teh hang-over as well. - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! --------------------------- Newsgroups: comp.os.vxworks Subject: Re: PPC 821/823 with passive LCD display Date: Thu, 22 Feb 2001 14:07:20 -0800 From: Robert Blumberg Organization: Posted via Supernews, http://www.supernews.com Message-ID: <3A958D98.590B324B@fake.com> References: <3A94E666.443A0D2C@sepro-robotique.com> Carefully check over the info in sections 18.3.1, 18.3.6 and 16.5.1 of the MPC823 manual. Enhancing the priority of the DMA could help. Rob't - -- Robert Blumberg Pintle & Gudgeon Robert dot Blumberg at PictureIQ dot Com Embedded System Software Development Emmanuel Herbreteau wrote: > > Hi, > > I'm working on VxWorks 5.4 with Zinc 6 on a custom > board based on MPC 823 (very similar to 821, with > some little enhancement and mods). > > The passive color LCD display (8 bits data interface) > connected to port D is not working correctly. I get > FIFO underrun from the LCD controller. Althought, > despite I set the pixel clock to 10,6 Mhz (32 Mhz > divide by 3), I only get a pixel clock of 7 Mhz > and refresh rate of 56 Hz (instead of 89). > > It seems that the SDMA does not correctly filled the LCD FIFO. > (too slow)(SDCR=0x01). > > All I get is a sad picture with vertical (unwanted !) colored row > and a low contrast (but the test picture is still recognizable). > > Any idea ???? > > Thanks a lot. > -- > Emmanuel > (SEPRO Robotique, France) --------------------------- Newsgroups: comp.os.vxworks Subject: problem on using objcopyppc Date: Thu, 22 Feb 2001 18:26:25 -0500 From: "Jason Jiang" Organization: Verio Message-ID: I wanted to burn the vxWorks image into the boot flash. I could not use 'ld' command, while the vxWorks images was running. So I used fopen(), fread() to read the image into my local memory, then used flash driver to burn it into the boot flash. But it cannot bring up the processor, because when booting up, the system will begin executing from the beginning of the boot flash, which contains the header of the image, instead of the executable code (text segment). Because of this, I tried to use "objcopyppc" command to strip the image and get text segment only. But I didn't know how to use this command. The only help I got was as below. Who can help please? D:\work>objcopyppc --help Usage: objcopyppc [-vVSgxX] [-I bfdname] [-O bfdname] [-F bfdname] [-b byte] [-R section] [-i interleave] [--interleave=interleave] [--byte=byte] [--input-target=bfdname] [--output-target=bfdname] [--target=bfdname] [--strip-all] [--strip-debug] [--strip-unneeded] [--discard-all] [--discard-locals] [--debugging] [--remove-section=section] [--gap-fill=val] [--pad-to=address] [--set-start=val] [--adjust-start=incr] [--adjust-vma=incr] [--adjust-section-vma=section{=,+,-}val] [--adjust-warnings] [--no-adjust-warnings] [--set-section-flags=section=flags] [--add-section=sectionname=filename] [--keep-symbol symbol] [-K symbol] [--strip-symbol symbol] [-N symbol] [--remove-leading-char] [--verbose] [--version] [--help] in-file [out-file] objcopyppc: supported targets: elf32-powerpc aixcoff-rs6000 elf32-powerpcle pei- powerpcle pei-powerpc pe-powerpcle pe-powerpc srec symbolsrec tekhex binary ihex --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 12:42:01 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <974eqj$esl$5@intimidator.databasix.com> References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:18:41 > -0000, the Troll "Dave Korn" Expectorated > this obviously gratuitous attention seeking statement into the aethyr > of alt.usenet.kooks : > > >Optional Identity wrote in message ... > >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 > >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >>obviously gratuitous attention seeking statement into the aethyr of > >>alt.usenet.kooks : > >> > >>>Optional Identity wrote: > >>> > >>>> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 > >>>> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >>>> obviously gratuitous attention seeking statement into the aethyr of > >>>> alt.usenet.kooks : > >>>> > >>>> >Optional Identity wrote: > >>>> > > >>>> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 > >08:50:21 > >>>> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >>>> >> obviously gratuitous attention seeking statement into the aethyr of > >>>> >> alt.usenet.kooks : > >>>> >> > >>>> >> >Optional Identity wrote: > >>>> >> > > >>>> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 > >17:22:13 > >>>> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated > >this > >>>> >> >> obviously gratuitous attention seeking statement into the aethyr > >of > >>>> >> >> alt.usenet.kooks : > >>>> >> >> > >>>> >> >> >Optional Identity wrote: > >>>> >> >> > > >>>> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 > >13:52:54 > >>>> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> > >Expectorated this > >>>> >> >> >> obviously gratuitous attention seeking statement into the > >aethyr of > >>>> >> >> >> alt.usenet.kooks : > >>>> >> >> >> > >>>> >> >> >> >Optional Identity wrote: > >>>> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being > >that most people > >>>> >> >> >> >> >are too > >>>> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that > >need to drink more. > >>>> >> >> >> >> >>>> >:(>> >>> > > >>>> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it > >*is* their fault!! > >>>> >> >> >> >> >>>> >:(>> >> > >>>> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. > >They are stupid > >>>> >> >> >> >> >cause > >>>> >> >> >> >> >>>> >:(>> >>they are sober. > >>>> >> >> >> >> >>>> >:(>> > > >>>> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? > >>>> >> >> >> >> >>>> >:(>> > > >>>> >> >> >> >> >>>> >:(>> > DaveK > >>>> >> >> >> >> >>>> >:(>> > >>>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are > >stupid? > >>>> >> >> >> >> >>>> >:(> > >>>> >> >> >> >> >>>> >:(>He could have a point. > >>>> >> >> >> >> >>>> >:( > >>>> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. > >>>> >> >> >> >> >>>> >:( > >>>> >> >> >> >> >>>> >:( DaveK > >>>> >> >> >> >> >>>> > > >>>> >> >> >> >> >>>> >That's nice to know > >>>> >> >> >> >> >>>> > >>>> >> >> >> >> >>>> It's not cool either! > >>>> >> >> >> >> >>> > >>>> >> >> >> >> >>>Unfortunately it is sometimes necessary. > >>>> >> >> >> >> >>> > >>>> >> >> >> >> >>Only for a short time, though. > >>>> >> >> >> >> > > >>>> >> >> >> >> > Preferably no longer than it takes to open the next > >bottle.... > >>>> >> >> >> >> > > >>>> >> >> >> >> Or hip-flask, if you chance to be at work. > >>>> >> >> >> > > >>>> >> >> >> >Or in your slurpie if you are in a dry area.... > >>>> >> >> >> >The cops don't have a clue. :) > >>>> >> >> >> > > >>>> >> >> >> The old vodka in the fruit salad trick. :) > >>>> >> >> > > >>>> >> >> >That works too, I got so shit face at my brothers 21st with that > >one. > >>>> >> >> >Oh and the second hand smoke had a part to play. > >>>> >> >> > > >>>> >> >> I find when doing both it's best to do the pot first. > >>>> >> > > >>>> >> >I don't really smoke pot myself, but if someone is doing it near me, > >>>> >> >I wont complain too much..... > >>>> >> > > >>>> >> It can interfere with ones consumption of alcohol. > >>>> > > >>>> >If not done in the correct manner I am sure it could. So I usually > >don't > >>>> >take that risk, pluss if I'm ever stoned I just sit there and veg out, > >I > >>>> >can't move at all. That's not fun at all. > >>>> > > >>>> I know what you mean!! I too just veg out!! and can't drink enough, > >>>> that ca't be right, huh? > >>> > >>>Definetly unacceptable... Though if I drink alot then smoke a bit, then > >>>I don't veg out, though I don't often do this. > >>> > >>I try to avoid it when I am horribly pissed, it just makes me fall > >>asleep. > > > > It takes years of practise and intensive yogic training to be able to > >drink yourself silly and then smoke yourself stupid without pukeing or > >passing out... Fortunately the practise is rewarding in and of itself :-D > > > > DaveK > > It gets easier when you are fully habituated to both. I still find it > is better to smoke early in the night, and then drink. A couple of > cones in the morning is good for teh hang-over as well. Brekky bongs... No thanks. I'll stick with the hangover or just keep drinking. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 12:42:48 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <974es3$esl$6@intimidator.databasix.com> References: <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719qb$ios$2@intimidator.databasix.com> Optional Identity wrote: > According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:58:06 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:18 > >> GMT, the Troll JayDee Expectorated this > >> obviously gratuitous attention seeking statement into the aethyr of > >> alt.usenet.kooks : > >> > >> >On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ > >> >pacific.net.au> wrote: > >> > > >> > > >> >>> I find that an IV drip by my bed with a couple of bags of vodka generally > >> >>> keeps me pissed through the night... > >> > > >> >>> DaveK > >> > > >> >>Oh, I'm always on the lookout for new ways to get smeshed. > >> >>Do you have to have a large knowledge of medicine to be able to set > >> >>this up? And how do I get my hands on the equipment? > >> > > >> >you can use an ultrasonic humidifier to produce ethyl alcohol > >> >vapor...breathe that shit and you'll get fucked-up, real-good > >> > > >> >best bet is to distill 100-proof vodka into pure grain alcohol > >> > > >> >then, put it in a jug with an appropriate amount of anhydrous > >> >magnesium sulfate, which removes the last traces of water > >> > > >> >...it's the killer shit, lemme-tellya > >> > > >> SUBSCRIBE!!!!! > > > >Um... The posibilities. > > > It is a worry, isn't it? Yes, but it would be interesting to try... > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 12:44:00 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <974eua$esl$7@intimidator.databasix.com> References: <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> Optional Identity wrote: > According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:16:31 > -0000, the Troll "Dave Korn" Expectorated > this obviously gratuitous attention seeking statement into the aethyr > of alt.usenet.kooks : > > >Optional Identity wrote in message ... > >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 > >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >>obviously gratuitous attention seeking statement into the aethyr of > >>alt.usenet.kooks : > >> > >>>Dave Korn wrote: > >>> > >>>> STFGP <"goose_fp"@ pacific.net.au> > wrote in message > >>>> <96uoe3$qr0$4@intimidator.databasix.com>... > >>>> >Dave Korn wrote: > >>>> > > >>>> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message > >>>> >> <96qpcd$fr2$1@intimidator.databasix.com>... > >>>> >> >Optional Identity wrote: > >>>> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. > >>>> >> >> >> >> >> >> >> >:( > >>>> >> >> >> >> >> >> >> >:( DaveK > >>>> >> >> >> >> >> >> >> > > >>>> >> >> >> >> >> >> >> >That's nice to know > >>>> >> >> >> >> >> >> >> > >>>> >> >> >> >> >> >> >> It's not cool either! > >>>> >> >> >> >> >> >> > > >>>> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. > >>>> >> >> >> >> >> >> > > >>>> >> >> >> >> >> >> Only for a short time, though. > >>>> >> >> >> >> >> > > >>>> >> >> >> >> >> >Well at least as long as you need to drive anywhere. > >>>> >> >> >> >> >> > > >>>> >> >> >> >> >> Yeah that too. > >>>> >> >> >> >> > > >>>> >> >> >> >> >It's an unfortunate part of life that we have to live with. > >>>> >> >> >> >> >Kinda of like work, taxes and death. > >>>> >> >> >> >> > > >>>> >> >> >> >> And sleep. > >>>> >> >> >> > > >>>> >> >> >> >Sleep aint to bad when you get enough that is. > >>>> >> >> >> > > >>>> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. > >>>> >> >> > > >>>> >> >> >Well the trick to that is just to drink so much that you actually > >get > >>>> >> >> >pisster while you sleep. Generally in a big pissup session, you > >>>> don't > >>>> >> >> >actually peack at your pisstest until an hour or 2 after you > >stop. > >>>> >> >> >So you hit it really hard, and you should peak until a few hours > >>>> after, > >>>> >> >> >but you go to bed straight after stopping and you will get pissed > >>>> while > >>>> >> >> >you sleep. EASY. > >>>> >> >> > > >>>> >> >> Yeah I do this too, but after sleeping for a while I sober up > >anyway. > >>>> >> > > >>>> >> >You have to be difficult don't you? Ok, set your alarm so that > >every > >>>> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you > >>>> >> >pissed. See there's are way around everything. > >>>> >> > > >>>> >> > >>>> >> I find that an IV drip by my bed with a couple of bags of vodka > >>>> generally > >>>> >> keeps me pissed through the night... > >>>> >> > >>>> >> DaveK > >>>> > > >>>> >Oh, I'm always on the lookout for new ways to get smeshed. > >>>> >Do you have to have a large knowledge of medicine to be able to set > >>>> >this up? And how do I get my hands on the equipment? > >>>> > >>>> Well it's probably quite important to get the drip rate right, you > >don't > >>>> want *too* much blood in your alcohol system! I think one of those > >machines > >>>> they give people for self-administering doses of morphine should do the > >job > >>>> nicely, you could just tape the button down before you fell asleep. > >>>> > >>>> DaveK > >>> > >>>Or if you could just get your hands on morphine........ > >>> > >>Don't start with the morphine!!! I just love opiates.... > >> > >>Sorry, I think I must have nodded off for a while, what were we > >>talking about? > > > > I thought I noticed your eyes roll back in your head until all I could see > >were the whites... > > > > DaveK > > Now I feel very bad, very bad indeed. I think I am dying.... Nah, just have another drink, you'll feel better. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 12:46:03 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <974f2k$esl$8@intimidator.databasix.com> References: <96qpcd$fr2$1@intimidator.databasix.com> <96slm3$5j2$4@intimidator.databasix.com> <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> <0l889ts97snuhm2g6blquaqp1c7d14kqos@4ax.com> <971a0f$lp0$2@intimidator.databasix.com> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 08:01:22 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 > >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> obviously gratuitous attention seeking statement into the aethyr of > >> alt.usenet.kooks : > >> > >> >Optional Identity wrote: > >> > > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 > >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> alt.usenet.kooks : > >> >> > >> >> >Optional Identity wrote: > >> >> > > >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 > >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> alt.usenet.kooks : > >> >> >> > >> >> >> >Optional Identity wrote: > >> >> >> > > >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 > >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> >> alt.usenet.kooks : > >> >> >> >> > >> >> >> >> >Optional Identity wrote: > >> >> >> >> > > >> >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 > >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> >> >> alt.usenet.kooks : > >> >> >> >> >> > >> >> >> >> >> >Optional Identity wrote: > >> >> >> >> > > >> >> >> >> >[snip] > >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid cause > >> >> >> >> >> >> >> >> >> >> >> >:(>> >>they are sober. > >> >> >> >> >> >> >> >> >> >> >> >:(>> > > >> >> >> >> >> >> >> >> >> >> >> >:(>> > Are you sure it isn't the other way round ? > >> >> >> >> >> >> >> >> >> >> >> >:(>> > > >> >> >> >> >> >> >> >> >> >> >> >:(>> > DaveK > >> >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >> >:(>> Do you mean they are sober because they are stupid? > >> >> >> >> >> >> >> >> >> >> >> >:(> > >> >> >> >> >> >> >> >> >> >> >> >:(>He could have a point. > >> >> >> >> >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. > >> >> >> >> >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >> >> >> >> >:( DaveK > >> >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >> >That's nice to know > >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> It's not cool either! > >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. > >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> Only for a short time, though. > >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. > >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> Yeah that too. > >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >It's an unfortunate part of life that we have to live with. > >> >> >> >> >> >> >> >> >Kinda of like work, taxes and death. > >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> And sleep. > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >Sleep aint to bad when you get enough that is. > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. > >> >> >> >> >> >> > > >> >> >> >> >> >> >Well the trick to that is just to drink so much that you actually get > >> >> >> >> >> >> >pisster while you sleep. Generally in a big pissup session, you don't > >> >> >> >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. > >> >> >> >> >> >> >So you hit it really hard, and you should peak until a few hours after, > >> >> >> >> >> >> >but you go to bed straight after stopping and you will get pissed while > >> >> >> >> >> >> >you sleep. EASY. > >> >> >> >> >> >> > > >> >> >> >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. > >> >> >> >> >> > > >> >> >> >> >> >You have to be difficult don't you? Ok, set your alarm so that every > >> >> >> >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you > >> >> >> >> >> >pissed. See there's are way around everything. > >> >> >> >> >> > > >> >> >> >> >> And clearly you have though of them all. > >> >> >> >> > > >> >> >> >> >Not all of them, just most. I have got to leave myself something to do > >> >> >> >> >for the next 20 odd years. > >> >> >> >> > > >> >> >> >> What you planning on doing after 20 years? > >> >> >> > > >> >> >> >Ops, I meant to say after the next 20 odd years. > >> >> >> >Well, medically, my body will only be able to keep on drinking > >> >> >> >for the next 20 odd years. So I'm going to have something to > >> >> >> >do after those 20 odd years are up... > >> >> >> > > >> >> >> You could just save up for a liver transplant. > >> >> > > >> >> >Shit. Fuck. > >> >> >Do you realise how much time you just save me > >> >> >with those 9 words? > >> >> > > >> >> One of the benefits of age and experience. > >> > > >> >Shit, well I owe you. The first shout is on me. > >> >Though you better print this off and bring it with you for proof as > >> >I will forget and deny most vigioursly that I said it. :) > >> > > >> > > >> Nah, I don't care bout teh shouts!! I will just say "liver" over and > >> over til you buy me a drink!!! > > > >That could work, depending on how much I already had already > >had to drink, not enough and you would get your drink. To much > >and I would YELL "FUCK OFF" over and over until you bought > >me 3 rounds. > > > That would work, I am sensitive and I will buy drinks for someone > yelling "FUCK OFF" until they stop! That is very interesting. Though I wouldn't take advantage, after a bit of yelling my throat would get dry. And then I would have to concentrate on the drinking. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: comp.os.vxworks Subject: Re: large downloadable image Date: Fri, 23 Feb 2001 01:43:52 GMT From: "Eugene Zlobin" Organization: EarthLink Inc. -- http://www.EarthLink.net Message-ID: References: In case of SimNt helps -m 0 for target server. Eugene. "Anisa Parikh" wrote in message news:LGUk6.18470$Sl.797118@iad-read.news.verio.net... > Hi folks, > > I'm running into problems with downloading a large image > from Tornado to the target. The target is MPC 860. Has > anyone run into a similar problem? The image is about > 47 meg. In the target server, I've modified the memory > cache size to be large enough. The wdb agent on the > target gives an exception and gets restarted. > > Anisa > > --------------------------- Newsgroups: comp.os.vxworks Subject: taskSuspend - What will be happened in long long time? Date: Fri, 23 Feb 2001 02:51:39 GMT From: "ŔĚ˝˝" Organization: Dacom Message-ID: <%ekl6.145$kd4.3424@news2.bora.net> Dear all. I'm a biginner on VxWorks. On the project, my job, I use "taskSuspend" to suspend a task for some time as below. FOREVER { if ( iAmActive ) do something; else taskSuspend (myTaskId); } While, if the "some time" would be "very long time", then what will be happened on the system ? I did not test the "taskSuspend" function for "long time" yet. Any dear konw? Thanks a lot. iiseull --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 14:27:24 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96slm3$5j2$4@intimidator.databasix.com> <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> <0l889ts97snuhm2g6blquaqp1c7d14kqos@4ax.com> <971a0f$lp0$2@intimidator.databasix.com> <974f2k$esl$8@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:46:03 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 08:01:22 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >Optional Identity wrote: >> >> > >> >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >Optional Identity wrote: >> >> >> > >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> > >> >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> >> > >> >> >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 >> >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> >> > >> >> >> >> >> >[snip] >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid cause >> >> >> >> >> >> >> >> >> >> >> >> >:(>> >>they are sober. >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > Are you sure it isn't the other way round ? >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > DaveK >> >> >> >> >> >> >> >> >> >> >> >> >:(>> >> >> >> >> >> >> >> >> >> >> >> >> >:(>> Do you mean they are sober because they are stupid? >> >> >> >> >> >> >> >> >> >> >> >> >:(> >> >> >> >> >> >> >> >> >> >> >> >> >:(>He could have a point. >> >> >> >> >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >> >> >> >> >> >> >> >> >> >> >> >> >:( >> >> >> >> >> >> >> >> >> >> >> >> >:( DaveK >> >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> >That's nice to know >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> It's not cool either! >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> Only for a short time, though. >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> Yeah that too. >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >It's an unfortunate part of life that we have to live with. >> >> >> >> >> >> >> >> >> >Kinda of like work, taxes and death. >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> And sleep. >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >Sleep aint to bad when you get enough that is. >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >Well the trick to that is just to drink so much that you actually get >> >> >> >> >> >> >> >pisster while you sleep. Generally in a big pissup session, you don't >> >> >> >> >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. >> >> >> >> >> >> >> >So you hit it really hard, and you should peak until a few hours after, >> >> >> >> >> >> >> >but you go to bed straight after stopping and you will get pissed while >> >> >> >> >> >> >> >you sleep. EASY. >> >> >> >> >> >> >> > >> >> >> >> >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. >> >> >> >> >> >> > >> >> >> >> >> >> >You have to be difficult don't you? Ok, set your alarm so that every >> >> >> >> >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >> >> >> >> >> >> >pissed. See there's are way around everything. >> >> >> >> >> >> > >> >> >> >> >> >> And clearly you have though of them all. >> >> >> >> >> > >> >> >> >> >> >Not all of them, just most. I have got to leave myself something to do >> >> >> >> >> >for the next 20 odd years. >> >> >> >> >> > >> >> >> >> >> What you planning on doing after 20 years? >> >> >> >> > >> >> >> >> >Ops, I meant to say after the next 20 odd years. >> >> >> >> >Well, medically, my body will only be able to keep on drinking >> >> >> >> >for the next 20 odd years. So I'm going to have something to >> >> >> >> >do after those 20 odd years are up... >> >> >> >> > >> >> >> >> You could just save up for a liver transplant. >> >> >> > >> >> >> >Shit. Fuck. >> >> >> >Do you realise how much time you just save me >> >> >> >with those 9 words? >> >> >> > >> >> >> One of the benefits of age and experience. >> >> > >> >> >Shit, well I owe you. The first shout is on me. >> >> >Though you better print this off and bring it with you for proof as >> >> >I will forget and deny most vigioursly that I said it. :) >> >> > >> >> > >> >> Nah, I don't care bout teh shouts!! I will just say "liver" over and >> >> over til you buy me a drink!!! >> > >> >That could work, depending on how much I already had already >> >had to drink, not enough and you would get your drink. To much >> >and I would YELL "FUCK OFF" over and over until you bought >> >me 3 rounds. >> > >> That would work, I am sensitive and I will buy drinks for someone >> yelling "FUCK OFF" until they stop! > >That is very interesting. Though I wouldn't take advantage, after a >bit of yelling my throat would get dry. And then I would have to >concentrate on the drinking. > I figure that is teh best way to end teh argument. - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! And a lunkhead! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 14:27:52 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> <974eua$esl$7@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:44:00 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:16:31 >> -0000, the Troll "Dave Korn" Expectorated >> this obviously gratuitous attention seeking statement into the aethyr >> of alt.usenet.kooks : >> >> >Optional Identity wrote in message ... >> >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 >> >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >>obviously gratuitous attention seeking statement into the aethyr of >> >>alt.usenet.kooks : >> >> >> >>>Dave Korn wrote: >> >>> >> >>>> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >> >>>> <96uoe3$qr0$4@intimidator.databasix.com>... >> >>>> >Dave Korn wrote: >> >>>> > >> >>>> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >> >>>> >> <96qpcd$fr2$1@intimidator.databasix.com>... >> >>>> >> >Optional Identity wrote: >> >>>> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >> >>>> >> >> >> >> >> >> >> >:( >> >>>> >> >> >> >> >> >> >> >:( DaveK >> >>>> >> >> >> >> >> >> >> > >> >>>> >> >> >> >> >> >> >> >That's nice to know >> >>>> >> >> >> >> >> >> >> >> >>>> >> >> >> >> >> >> >> It's not cool either! >> >>>> >> >> >> >> >> >> > >> >>>> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >> >>>> >> >> >> >> >> >> > >> >>>> >> >> >> >> >> >> Only for a short time, though. >> >>>> >> >> >> >> >> > >> >>>> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >> >>>> >> >> >> >> >> > >> >>>> >> >> >> >> >> Yeah that too. >> >>>> >> >> >> >> > >> >>>> >> >> >> >> >It's an unfortunate part of life that we have to live with. >> >>>> >> >> >> >> >Kinda of like work, taxes and death. >> >>>> >> >> >> >> > >> >>>> >> >> >> >> And sleep. >> >>>> >> >> >> > >> >>>> >> >> >> >Sleep aint to bad when you get enough that is. >> >>>> >> >> >> > >> >>>> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >> >>>> >> >> > >> >>>> >> >> >Well the trick to that is just to drink so much that you actually >> >get >> >>>> >> >> >pisster while you sleep. Generally in a big pissup session, you >> >>>> don't >> >>>> >> >> >actually peack at your pisstest until an hour or 2 after you >> >stop. >> >>>> >> >> >So you hit it really hard, and you should peak until a few hours >> >>>> after, >> >>>> >> >> >but you go to bed straight after stopping and you will get pissed >> >>>> while >> >>>> >> >> >you sleep. EASY. >> >>>> >> >> > >> >>>> >> >> Yeah I do this too, but after sleeping for a while I sober up >> >anyway. >> >>>> >> > >> >>>> >> >You have to be difficult don't you? Ok, set your alarm so that >> >every >> >>>> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >> >>>> >> >pissed. See there's are way around everything. >> >>>> >> > >> >>>> >> >> >>>> >> I find that an IV drip by my bed with a couple of bags of vodka >> >>>> generally >> >>>> >> keeps me pissed through the night... >> >>>> >> >> >>>> >> DaveK >> >>>> > >> >>>> >Oh, I'm always on the lookout for new ways to get smeshed. >> >>>> >Do you have to have a large knowledge of medicine to be able to set >> >>>> >this up? And how do I get my hands on the equipment? >> >>>> >> >>>> Well it's probably quite important to get the drip rate right, you >> >don't >> >>>> want *too* much blood in your alcohol system! I think one of those >> >machines >> >>>> they give people for self-administering doses of morphine should do the >> >job >> >>>> nicely, you could just tape the button down before you fell asleep. >> >>>> >> >>>> DaveK >> >>> >> >>>Or if you could just get your hands on morphine........ >> >>> >> >>Don't start with the morphine!!! I just love opiates.... >> >> >> >>Sorry, I think I must have nodded off for a while, what were we >> >>talking about? >> > >> > I thought I noticed your eyes roll back in your head until all I could see >> >were the whites... >> > >> > DaveK >> >> Now I feel very bad, very bad indeed. I think I am dying.... > >Nah, just have another drink, you'll feel better. > Actually that does work... - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! And a lunkhead! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 14:28:31 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719qb$ios$2@intimidator.databasix.com> <974es3$esl$6@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:42:48 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:58:06 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:18 >> >> GMT, the Troll JayDee Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ >> >> >pacific.net.au> wrote: >> >> > >> >> > >> >> >>> I find that an IV drip by my bed with a couple of bags of vodka generally >> >> >>> keeps me pissed through the night... >> >> > >> >> >>> DaveK >> >> > >> >> >>Oh, I'm always on the lookout for new ways to get smeshed. >> >> >>Do you have to have a large knowledge of medicine to be able to set >> >> >>this up? And how do I get my hands on the equipment? >> >> > >> >> >you can use an ultrasonic humidifier to produce ethyl alcohol >> >> >vapor...breathe that shit and you'll get fucked-up, real-good >> >> > >> >> >best bet is to distill 100-proof vodka into pure grain alcohol >> >> > >> >> >then, put it in a jug with an appropriate amount of anhydrous >> >> >magnesium sulfate, which removes the last traces of water >> >> > >> >> >...it's the killer shit, lemme-tellya >> >> > >> >> SUBSCRIBE!!!!! >> > >> >Um... The posibilities. >> > >> It is a worry, isn't it? > >Yes, but it would be interesting to try... > Sad, but true!!! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! And a lunkhead! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 14:29:24 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: <27mb9t4f3qbv2lf5pumit9los46mm6bj3c@4ax.com> References: <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> <974eqj$esl$5@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:42:01 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:18:41 >> -0000, the Troll "Dave Korn" Expectorated >> this obviously gratuitous attention seeking statement into the aethyr >> of alt.usenet.kooks : >> >> >Optional Identity wrote in message ... >> >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 >> >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >>obviously gratuitous attention seeking statement into the aethyr of >> >>alt.usenet.kooks : >> >> >> >>>Optional Identity wrote: >> >>> >> >>>> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 >> >>>> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >>>> obviously gratuitous attention seeking statement into the aethyr of >> >>>> alt.usenet.kooks : >> >>>> >> >>>> >Optional Identity wrote: >> >>>> > >> >>>> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 >> >08:50:21 >> >>>> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >>>> >> obviously gratuitous attention seeking statement into the aethyr of >> >>>> >> alt.usenet.kooks : >> >>>> >> >> >>>> >> >Optional Identity wrote: >> >>>> >> > >> >>>> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 >> >17:22:13 >> >>>> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated >> >this >> >>>> >> >> obviously gratuitous attention seeking statement into the aethyr >> >of >> >>>> >> >> alt.usenet.kooks : >> >>>> >> >> >> >>>> >> >> >Optional Identity wrote: >> >>>> >> >> > >> >>>> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 >> >13:52:54 >> >>>> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> >> >Expectorated this >> >>>> >> >> >> obviously gratuitous attention seeking statement into the >> >aethyr of >> >>>> >> >> >> alt.usenet.kooks : >> >>>> >> >> >> >> >>>> >> >> >> >Optional Identity wrote: >> >>>> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being >> >that most people >> >>>> >> >> >> >> >are too >> >>>> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that >> >need to drink more. >> >>>> >> >> >> >> >>>> >:(>> >>> > >> >>>> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it >> >*is* their fault!! >> >>>> >> >> >> >> >>>> >:(>> >> >> >>>> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. >> >They are stupid >> >>>> >> >> >> >> >cause >> >>>> >> >> >> >> >>>> >:(>> >>they are sober. >> >>>> >> >> >> >> >>>> >:(>> > >> >>>> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? >> >>>> >> >> >> >> >>>> >:(>> > >> >>>> >> >> >> >> >>>> >:(>> > DaveK >> >>>> >> >> >> >> >>>> >:(>> >> >>>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are >> >stupid? >> >>>> >> >> >> >> >>>> >:(> >> >>>> >> >> >> >> >>>> >:(>He could have a point. >> >>>> >> >> >> >> >>>> >:( >> >>>> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. >> >>>> >> >> >> >> >>>> >:( >> >>>> >> >> >> >> >>>> >:( DaveK >> >>>> >> >> >> >> >>>> > >> >>>> >> >> >> >> >>>> >That's nice to know >> >>>> >> >> >> >> >>>> >> >>>> >> >> >> >> >>>> It's not cool either! >> >>>> >> >> >> >> >>> >> >>>> >> >> >> >> >>>Unfortunately it is sometimes necessary. >> >>>> >> >> >> >> >>> >> >>>> >> >> >> >> >>Only for a short time, though. >> >>>> >> >> >> >> > >> >>>> >> >> >> >> > Preferably no longer than it takes to open the next >> >bottle.... >> >>>> >> >> >> >> > >> >>>> >> >> >> >> Or hip-flask, if you chance to be at work. >> >>>> >> >> >> > >> >>>> >> >> >> >Or in your slurpie if you are in a dry area.... >> >>>> >> >> >> >The cops don't have a clue. :) >> >>>> >> >> >> > >> >>>> >> >> >> The old vodka in the fruit salad trick. :) >> >>>> >> >> > >> >>>> >> >> >That works too, I got so shit face at my brothers 21st with that >> >one. >> >>>> >> >> >Oh and the second hand smoke had a part to play. >> >>>> >> >> > >> >>>> >> >> I find when doing both it's best to do the pot first. >> >>>> >> > >> >>>> >> >I don't really smoke pot myself, but if someone is doing it near me, >> >>>> >> >I wont complain too much..... >> >>>> >> > >> >>>> >> It can interfere with ones consumption of alcohol. >> >>>> > >> >>>> >If not done in the correct manner I am sure it could. So I usually >> >don't >> >>>> >take that risk, pluss if I'm ever stoned I just sit there and veg out, >> >I >> >>>> >can't move at all. That's not fun at all. >> >>>> > >> >>>> I know what you mean!! I too just veg out!! and can't drink enough, >> >>>> that ca't be right, huh? >> >>> >> >>>Definetly unacceptable... Though if I drink alot then smoke a bit, then >> >>>I don't veg out, though I don't often do this. >> >>> >> >>I try to avoid it when I am horribly pissed, it just makes me fall >> >>asleep. >> > >> > It takes years of practise and intensive yogic training to be able to >> >drink yourself silly and then smoke yourself stupid without pukeing or >> >passing out... Fortunately the practise is rewarding in and of itself :-D >> > >> > DaveK >> >> It gets easier when you are fully habituated to both. I still find it >> is better to smoke early in the night, and then drink. A couple of >> cones in the morning is good for teh hang-over as well. > >Brekky bongs... No thanks. I'll stick with the hangover or just >keep drinking. > You are sick!! Oh, another vodka? OK!!! If you insist, even if you don't!!! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! And a lunkhead! --------------------------- Newsgroups: comp.os.vxworks Subject: Re: large downloadable image Date: Thu, 22 Feb 2001 22:41:15 -0500 From: "Serge Sarraillon" Message-ID: References: Tornado II debugger still works if you configure Tornado to read the previous uncompress vxWorks file which contains all the debugging stuff you need. Serge S. "Dave Korn" wrote in message news:fH7l6.519$yi4.488007@newsr1.u-net.net... > Serge Sarraillon wrote in message ... > >"Anisa Parikh" wrote in message > >news:LGUk6.18470$Sl.797118@iad-read.news.verio.net... > >> > >> I'm running into problems with downloading a large image > >> from Tornado to the target. The target is MPC 860. Has > >> anyone run into a similar problem? The image is about > >> 47 meg. In the target server, I've modified the memory > >> cache size to be large enough. The wdb agent on the > >> target gives an exception and gets restarted. > > > >you should use 'objcopy' to strip your file... > >(in my case my application file went down from 15 Meg to 2 Meg) > > Unless you want the debugger to be of any use. I'd say try giving the > target server a *much* bigger cache than the image size - anywhere between > 50% - 100% extra again - and see if that fixes the problem. I've found it > necessary with my huge project, and I had the same symptom. > > DaveK > -- > They laughed at Galileo. They laughed at Copernicus. They laughed at > Columbus. But remember, they also laughed at Bozo the Clown. > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: taskSuspend - What will be happened in long long time? Date: Thu, 22 Feb 2001 20:03:33 -0800 From: DrDiags Organization: Posted via Supernews, http://www.supernews.com Message-ID: <3A95E115.400568AD@flashcom.net> References: <%ekl6.145$kd4.3424@news2.bora.net> Reply-To: drdiags@flashcom.net Dear Iiseull, Do you mean to use "taskDelay"? That is what I gather from your reference to setting "some time" = "very long time". If so, this would not affect how the kernel went about doing its work, because the task would be delay for "some time" system clock ticks before it became ready to run again. If you did a "taskSuspend", the task would be set to the suspended state and would not be able to run until some other task or you did a "taskResume" on the TID. So after the first "taskSuspend", all other calls to suspend a already suspended task should do nothing. Now, if for some reason, your task is doing something to keep a watchdog at bay for instance, then of course the watchdog would not be serviced and your system would reboot. HTH. "ŔĚ˝˝" wrote: > Dear all. > > I'm a biginner on VxWorks. > On the project, my job, I use "taskSuspend" to suspend a task for some time > as below. > > FOREVER { > if ( iAmActive ) > do something; > else > taskSuspend (myTaskId); > } > > While, if the "some time" would be "very long time", then what will be > happened > on the system ? > I did not test the "taskSuspend" function for "long time" yet. > > Any dear konw? > > Thanks a lot. > > iiseull --------------------------- Newsgroups: comp.os.vxworks Subject: VxWorks: Servo Control System Job Opportunity Date: Thu, 22 Feb 2001 20:44:54 -0800 From: VxWorks User Group Organization: Lawrence Berkeley National Laboratory Message-ID: <974rm7$9tf$1@overload.lbl.gov> Triad Project Management Services supports major engineering projects for the government and commercial accounts. Our clients seek creative solutions to unique engineering problems involving astronomy, physics and sophisticated hi-tech applications. If this kind of work interests you, Triad Project Management is currently recruiting Sr. Electrical Engineers with real-time servo control experience using VxWorks. As an engineer on this project you will design the control system to operate a six-axis optical positioning system involving 20+ interrelated feedback loops. Candidates must have an understanding of the interface between electrical hardware and the programming of the real time control software written in C in a VxWorks environment. Candidates need to be able to design, develop, implement and test low noise/high dynamic range feedback control electronics, including design, implement and troubleshooting of real-time control systems, especially those with VME based microprocessors, embedded DSP technology and VxWorks operating systems. Experience with C or C++ programming is desired. Experience in one or more of the following is desirable: design of front-end interface electronics including low noise analog electronic circuits, VME based systems, UNIX, embedded microprocessor hardware and software systems, remote control and monitoring systems. Some travel of about 20% will be needed. If you would like to know more about this job opportunity call our offices or contact us via email immediately. Of course, if you would prefer not to receive email regarding this or other VxWorks job opportunities, we do understand. Just send me a note containing "remove" in the subject and "VxWorks Jobs" in the body and you won't be contacted in the future when other VxWorks opportunities arise. Thanks. Michael Green mgreen@triadpm.com Triad Project Management Services, Inc. 3452 E Foothill Blvd Suite 530 Pasadena, CA 91107 Office: 626-793-7314 Fax: 626-793-7432 --------------------------- Newsgroups: comp.os.vxworks Subject: VxWorks(64 Bit Addition). Date: Fri, 23 Feb 2001 11:27:41 +0530 From: "Krishna Kishore Reddy Sureddy" Organization: Lawrence Berkeley National Laboratory Message-ID: <974v6n$b47$1@overload.lbl.gov> Hi VxWorks Gurus, How to perform addition of 64 bit integers on a 32 bit processor.(MIPS, R4000). Can someone pass me code in "C".... Thanks and Regards, S.K.K.Reddy. --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 06:57:50 GMT From: JayDee Organization: =^.^= Message-ID: References: <96l42r$pul$1@pookiehead.databasix.com> <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> Reply-To: ThatJayDee@yahoo.com On Thu, 22 Feb 2001 07:43:13 +1100, Optional Identity wrote: >>>> I find that an IV drip by my bed with a couple of bags of vodka = generally >>>> keeps me pissed through the night... >> >>>> DaveK >> >>>Oh, I'm always on the lookout for new ways to get smeshed. >>>Do you have to have a large knowledge of medicine to be able to set >>>this up? And how do I get my hands on the equipment? >> >>you can use an ultrasonic humidifier to produce ethyl alcohol >>vapor...breathe that shit and you'll get fucked-up, real-good >> >>best bet is to distill 100-proof vodka into pure grain alcohol >> >>then, put it in a jug with an appropriate amount of anhydrous >>magnesium sulfate, which removes the last traces of water >> >>...it's the killer shit, lemme-tellya >SUBSCRIBE!!!!! can't do any distilling or make shit like THC acetate I stupidly left my organic chemistry kits in Sharon's fucken humongous storage space...hugeass one! she gotta big booty, too, butt it's a fine one... argh, I left my scales at her place woah, I was *really* fucked-up... got my Deering and my stashbox, tho... I think I left my surveyors' transit, too I recovered the tapes and some shit on 5.25HD that she had kinda-stashed behind the bed... pffffttt... --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 06:57:51 GMT From: JayDee Organization: =^.^= Message-ID: References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <=ZSTOrcE18YzTTWWZ7l3dmzn896P@4ax.com> Reply-To: ThatJayDee@yahoo.com On Thu, 22 Feb 2001 07:44:37 +1100, Optional Identity wrote: >>oh, fuck the booze...it's toxic shit, anyway... >>just smoke decent equatorial varieties of weed >>I had this shit called Rutabagah (leaves looked like rutabagah >>leaves) that was an Afghanistani-Columbian hybrid, and forced >>the females to produce pollen, which produced only female seeds >>...didn't have to fuck with whacking a bunch of apical meristems >Just reading this is getting me off! whop the plants over a window screen brush-together the golden dust...fill a fat vial packed-full smoke that fucking shit in a long-ass bamboo bong... mother fuck... we got high, lots real fucken high and that wasn't even counting the magic shit or LGDs jezuz kreist on a crutch, no wonder I'm all fucked-up I ain't been getting high and fucking my brains out... --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 18:54:34 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96m002$5fp$6@moriarty.databasix.com> <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 06:57:50 GMT, the Troll JayDee Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >On Thu, 22 Feb 2001 07:43:13 +1100, Optional Identity > wrote: > > >>>>> I find that an IV drip by my bed with a couple of bags of vodka generally >>>>> keeps me pissed through the night... >>> >>>>> DaveK >>> >>>>Oh, I'm always on the lookout for new ways to get smeshed. >>>>Do you have to have a large knowledge of medicine to be able to set >>>>this up? And how do I get my hands on the equipment? >>> >>>you can use an ultrasonic humidifier to produce ethyl alcohol >>>vapor...breathe that shit and you'll get fucked-up, real-good >>> >>>best bet is to distill 100-proof vodka into pure grain alcohol >>> >>>then, put it in a jug with an appropriate amount of anhydrous >>>magnesium sulfate, which removes the last traces of water >>> >>>...it's the killer shit, lemme-tellya > >>SUBSCRIBE!!!!! > >can't do any distilling or make shit like THC acetate > >I stupidly left my organic chemistry kits in Sharon's >fucken humongous storage space...hugeass one! > >she gotta big booty, too, butt it's a fine one... > >argh, I left my scales at her place > >woah, I was *really* fucked-up... > >got my Deering and my stashbox, tho... > >I think I left my surveyors' transit, too > >I recovered the tapes and some shit on 5.25HD >that she had kinda-stashed behind the bed... > >pffffttt... > That is some fucked up shit, huh. Nevermind dued you'll be ok, I guess! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! And a lunkhead! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 18:55:56 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: <4r5c9tk8m0c6o3bk4ei6u9lce7eh3up3nk@4ax.com> References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <=ZSTOrcE18YzTTWWZ7l3dmzn896P@4ax.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 06:57:51 GMT, the Troll JayDee Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >On Thu, 22 Feb 2001 07:44:37 +1100, Optional Identity > wrote: > > >>>oh, fuck the booze...it's toxic shit, anyway... > >>>just smoke decent equatorial varieties of weed > >>>I had this shit called Rutabagah (leaves looked like rutabagah >>>leaves) that was an Afghanistani-Columbian hybrid, and forced >>>the females to produce pollen, which produced only female seeds > >>>...didn't have to fuck with whacking a bunch of apical meristems > >>Just reading this is getting me off! > >whop the plants over a window screen > >brush-together the golden dust...fill a fat vial packed-full > >smoke that fucking shit in a long-ass bamboo bong... > >mother fuck... > >we got high, lots > >real fucken high > >and that wasn't even counting the magic shit or LGDs > >jezuz kreist on a crutch, no wonder I'm all fucked-up > >I ain't been getting high and fucking my brains out... I'm thinkin' mebee you needs to dry out for a few days, man!! - -- Optional Identity Insane Cross-Poster: MEOW! Another Fine Post from the Petitmorte Family of Fine Posters, Hace you had your little death today? N'est ce pas? http://www.petitmorte.net/castle.shtml (The Saga Continues) Skepticult Rank: Colonel Skepticult Serial Number: 321-29337-833 I am a lamer! And a lunkhead! --------------------------- Newsgroups: comp.os.vxworks Subject: Howto get documentation for hashLib,sllLib and dllLib ? Date: Fri, 23 Feb 2001 09:27:10 +0100 From: Thomas Lobbe Organization: Ericsson Eurolab Deutschland GmbH Message-ID: <3A961EDE.516DC3CC@eede.ericsson.se> Reply-To: Thomas.Lobbe@eed.ericsson.se Hi, does anybody know how to get a documentation about the undocumented libraries hashLib, sllLib and/or dllLib ? Thanks, Thomas L. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: vxworks memory management Date: Fri, 23 Feb 2001 10:51:44 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982922171.463684@newsmaster-04.atnet.at> References: <971pkv$qsd$1@mail.cn99.com> VxWorks memory management is located in memLib and memPartLib. As far as my knowledge goes it is not much more than a usual first fit, allocating from highest address to lowest (for x86, at least). I do not know of any optimizations for realtime, embedded will probably not need special treatment here. If you need constant time allocation or allocation is ISR, you need to implement that on your own... hth werner news.cn99.com wrote in message news:971pkv$qsd$1@mail.cn99.com... > Does anyone can tell me the vxworks memory management? I searched WinRiver > Web Site, but can't find it. What is special for realtime and embedded > environment? > > Thanks, > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: vxWorks image booting error Date: Fri, 23 Feb 2001 11:18:09 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982923754.702092@newsmaster-04.atnet.at> References: <96v33n$8nn$1@news.nuri.net> Hi, well, this is quite a bit hard to diagnose from outside but let's have a try i would assume some of the options you changed to make the bsp work with your target are overwritten by the project facility of T2 the most promising way to check this (if you developed the BSP yourself and are well informed about what _should_ be set/not set) is to have a look at the generated files from the project facility. after building the image, you will find these files in your project directory: prjComps.h - The packages included in your image(defines INCLUDE_Xxxx macros) prjParams.h - Overwrites _most_ of your BSP's settings, carefully check important values! prjConfig.c - This is where your image really is built together (the usrRoot() function, to be precise) linkSyms.c - This is just a list of symbols which's code is compiled into the image The image location is defined in some places (at least for some BSPs) In the project facility (hardware -> memory -> BSP Memory Configuration) In the file config.h of your BSP (used for command line build!! - will contain the _correct_ values in your case) In the makefile (MUST match the other locations, otherwise the image will not be linked for the correct location!!!) Macro (= parameter, for project thingy) names are something like: LOCAL_MEM_AUTOSIZE LOCAL_MEM_SIZE LOCAL_MEM_LOCAL_ADRS Finally, I expect you do not really mean using the old Tornado I compilers and tools, but rather the command line build with the tools that come with Tornado II, don't you???? Otherwise you will face TONS of problems... I would _never_ mix the Tornado I and II tools... hth Werner yessi wrote in message news:96v33n$8nn$1@news.nuri.net... > Hi. > > First, I will explain my environment. > # CPU board: MPC860 that is made in our company > # BSP : The my BSP is not standard. Before using Tornado 2, > make compiling is done in Tornado 1( Dos command ) > and it is operated well. But I don't know what error is in > Tornado2 project facility. > > 1. I think that boot device is specified well(MPC860, cpm). > What is image location and bootloader? > How can I modify image location ? > > 2. If I don't use standard BSPs, it is impossible to use ? > > 3. ------------------------------------------------ > Attaching network interface cpm0... done. > Attaching network interface lo0... done. > Loading... 749616 > Starting at 0x10000... (at this point, procedure stop > and CPU is fail) > ------------------------------------------------ > Attaching network by bootrom is good, vxWorks image is bad. > Why Loading does not consist of text, data, bss. > Is it another error? > > 4. First, in Dos command , I excute "make vxWorks" command, > just runtime image file. > It is equal to making vxWorks images file in T2 project facility > (Build TAB - Standard BSP Builds... - vxWorks). It is operated well. > Second, (No.3) I made vxWorks by right mouse click menu > after making new bootable project . (Rebuild vxWorks menu) > - It contain vxWorks component but it is not operated at all. > What is different first method from second. Is it debugging and > windView? > > 5. I compared vxWorks hex file by 1st method from 2nd method, > and found difference each other. > After Starting at 0x10000...message, it will show 3 sentences if good. > -- Attaching network interface cpm0... done. > -- Attached TCP/IP ... > -- Attached NFS not included... > In 1st vxWorks hex file this sentences are included but 2nd > vxWorks hex file is not. > Why is it ? Perhaps make file ? or Project configuration file in > T2 project facility? > I think that network file is not included, probably usrNetwork.h > (/target/src/config/ ) > Why this directory and important file are not linked automatically? > It need modification of config.h? > I am confused. > > Thanks for reading. > > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: what does mean the warning "trigraph(s) encountered" Date: Fri, 23 Feb 2001 11:24:45 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982924150.649090@newsmaster-04.atnet.at> References: <96vgsv$h40$1@news.etri.re.kr> <9719h2$iso$1@neptunium.btinternet.com> AFAIK you can also escape on of the qustion marks with a backslash thus change: printf("What??!"); to printf("What?\?!"); for code you need to give other people to compile (that do not have/want to set -Wno-trgraph thing) and maybe more 'beautiful' than string concatenation... hth werner Dave Korn wrote in message news:eH7l6.517$yi4.488214@newsr1.u-net.net... > David Laight wrote in message <9719h2$iso$1@neptunium.btinternet.com>... > >RTFM! > > > >In this case ANSI C - try K&R 2. > > > >Trigraphs are horrid beasts invented by the ANSI C committe way back in the > >mid 1980s in order to make C source readable on terminals/printers with > >non-US/UK 7-bit character sets. In particular those where [ ] ^ \ { } ` > etc > >are accented characters rather than punctuation. > > > >Any sequence ??x (in C source) is replaced by a single other character. > >I don't know the mappings, but suspect: > > ??( is [ > > ??/ is \ > >there are about a dozen of them. > > > >You probably have ??? in a string somewhere... > >(you can subvert things by concatenating strings - "abc" "def" is identical > >to "abcdef") > > > >Trigraphs are thus valid C - but almost certainly not what you had in mind. > > I'm pretty sure that Gcc *ignores* them by default, and the warning is to > let you know that if by any remote chance you *did* want a trigraph, you > have to use the -trigraphs switch to enable them. So there's no need to > concatenate strings to avoid them, unless portability to very old compilers > is an issue for you! You could probably add -Wno-trigraphs to your build > flags. > > DaveK > -- > They laughed at Galileo. They laughed at Copernicus. They laughed at > Columbus. But remember, they also laughed at Bozo the Clown. > > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: taskSuspend - What will be happened in long long time? Date: Fri, 23 Feb 2001 11:29:56 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982924461.600174@newsmaster-04.atnet.at> References: <%ekl6.145$kd4.3424@news2.bora.net> Hi, you should not use taskSuspend to implement sleeping/delaying a task cite from VxWorks Reference Guide: + This routine is the basis of the debugging and exception handling packages. + However, as a synchronization mechanism, this facility should be rejected + in favor of the more general semaphore facility. end of cite to delay/sleep for a fixed time use taskDelay() to wait for some event consider semaphores hth werner ŔĚ˝˝ wrote in message news:%ekl6.145$kd4.3424@news2.bora.net... > Dear all. > > I'm a biginner on VxWorks. > On the project, my job, I use "taskSuspend" to suspend a task for some time > as below. > > FOREVER { > if ( iAmActive ) > do something; > else > taskSuspend (myTaskId); > } > > While, if the "some time" would be "very long time", then what will be > happened > on the system ? > I did not test the "taskSuspend" function for "long time" yet. > > > Any dear konw? > > > Thanks a lot. > > > iiseull > > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: VxWorks & PCI Date: Fri, 23 Feb 2001 11:36:36 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982924863.100706@newsmaster-04.atnet.at> References: <3A93EB0A.81A16FA9@vitatron.com> For the pc386, pc486 und pcPentium BSPs, the physical address written to the card is _equal_ to the logical address used in VxWorks. This is because all the offset constants have a value of 0 (or evaluate to this, in the end...) I recommend you start with the file "sysEl3c90xEnd.c" and lookup the function STATUS sysEl3c90xPciInit (void) I left out the memory mapping at all and only read the current setting, because the BIOS does that business quite fine for me... If you do not have a PCI aware BIOS on your board, you cannot take this approach, of course. hth werner Renate Meijer wrote in message news:3A93EB0A.81A16FA9@vitatron.com... > Hi, > > I'm developing a VxWorks driver for Unidig IP cards running on x86 > hardware (and BSP). The card in question uses a PLX9080 PCI controller > which delivers the address 0xE0000000 for the BAR2 register. I set up > the MMU using sysMmuMapAdd which comes out ok. However, when I dum the > memory at that address the dump routine takes it's time on the first few > > bytes (as if it times out) and delivers nothing but zero's. > > Some time ago, i picked up a driver from this group to use as an > example. Basically I do the same except this driver adds 0xC0000000 to > BAR2 with a comment stating that there is an offset between the CPU > addresses and the PCI address range. When I try this in my own driver, > there's no delay for a dump at 0xA0000000 (0xE0000000 + (int) > 0xC0000000). > > Does anyone know where 0xC0000000 comes from? Is it correct? Am I > missing something in the initialisation or setup? > > Thanx in advance... > > Kind regards, > > Renate Meijer. > > --------------------------- Newsgroups: comp.os.vxworks Subject: OT: make for Win32? Date: Fri, 23 Feb 2001 11:42:06 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982925190.691726@newsmaster-04.atnet.at> References: <973oh8$hoh$1@overload.lbl.gov> <3a9577fc.254627795@news> Hello, sorry, this is a little off topic maybe... but do you know of a GNU make (or similar powerful) version for Windows NT / Windows 2000 that can cope with embedded spaces in file and/or directory names? The versions I found up to now cannot deal with that... Thank you for any suggestions... thanks werner Bob DeJoie wrote in message news:3a9577fc.254627795@news... > Hi, > I come from a Unix back ground and created custom makefiles > under T1. I found that the version of Gnu make that comes with > Tornado was not able to do recursive make calls so instead > used the version that comes with bash. > > When we went to T2 nothing much changed. I am building > from a bash window and not from inside the IDE. > > > On Thu, 22 Feb 2001 10:16:15 -0800, "Tan, Tat Kin" > wrote: > > >Greetings all, > > > >Previously we developed some Apps and compiled the image under a project, > >say Proj1. It's all done in Unix environment (makefile). Now what i want to > >do is, to use T2 Win base instead of Unix. Basically to port the entire > >collections of source files into T2 Win, maintaining the original directory > >structure. I understand that in Windows based Tornado2.0, there is a > >facility that allow you to add projects to workspace (under File) but that > >will require ".pwj" file to describe the structure. In Unix, there is no > >such thing. > > > >My problem is, instead of rebuilding the entire project, how can i port > >Proj1 to Win T2? And so that when building the image, it works exactly the > >same as Unix make. Any taker? Million thanks in advance. > > > >Rgds, > >tatkin > > > > ================================================ > Bob DeJoie > Kwajalein Missile Range > Republic of the Marshall Islands > email: rjdejoie@kmrmail.kmr.ll.mit.edu > phone: 805-355-5855 fax: 805-355-3833 > Time Zone: GMT +12 hours > ================================================ --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Handling Interrupt - Date: Fri, 23 Feb 2001 11:49:46 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982925651.566693@newsmaster-04.atnet.at> References: <96rnsp$c9n$1@overload.lbl.gov> > ...The problem is that the status registers must be read some time > after the interrupt has occured. ... This is _exactly_ what an interrupt is originally intended for ;-) --------------------------- Newsgroups: comp.os.vxworks Subject: Re: T2 man pages??? Date: Fri, 23 Feb 2001 12:08:17 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982926762.133257@newsmaster-04.atnet.at> References: <96h9ta$kks$1@overload.lbl.gov> <3A8D3C72.FBF1BECF@lmco.com> <3A8D866F.E07AFAF2@lmco.com> Dave Korn wrote in message news:gRdj6.279$yi4.277387@newsr1.u-net.net... > Joe Durusau wrote in message <3A8D866F.E07AFAF2@lmco.com>... > > I suppose that there are several parts to the answer. > > > >1). We normally do development from remote systems via a telnet > >interface, and use the gui only when it gives us something useful, > >(which is not often). > > Remote host, local target? You guys are bizarre! > Anyone may use the tool he likes for programming. Even a serial terminal if this makes the guy happy... > >2). If you type man -k you may get as many as 20 or 30 hits, > >and I can't imagine a browser popping up that many pages at once. > > That's a valid point, because the index is only searchable by function > names, where apropos indexes every word in the entire doc. > If WindRiver did use the HTML Help format everyone else uses this _would_ work. Take MSDN as a reference for that, I never had too few hits... > >3). Running a gui interface slows down every computer I have ever used > >by at least tenfold. I don't like that. > > I find that they tend to be fast enough nowadays that I don't care. After > all, I can only type 30-something wpm at best; I don't care whether the > response time is just under my character rate or 1/100th of it, I only care > if the machine takes longer to respond than I take between typing chars. > I agree with that 100% > >4). I too, an burdened with windoz (nt 4.0, it happesn). But for more > >sophisticated operations, I prefer unix or dos command line operations. > > Yeah, I don't actually use the Tornado gui except for the debugger; I do > all my builds in a dos shell. You've still got access to the GUI index when > you need it, you don't have to run the T2 gui to get the html index. It is the really poor tornado development environment to blame here. If that project tool really worked the way it probably was intended I think this would be different. But as is, it cannot build a bootrom, some options are simply misseng,... Hope this will change soon, because personally I really prefer a _good_ IDE to a bunch of cmd line tools. Since there most of my tornado development is done in Visual Studio... only my 2 cent... werner --------------------------- Newsgroups: comp.os.vxworks Subject: Re: T2 man pages??? Date: Fri, 23 Feb 2001 12:09:52 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982926857.174058@newsmaster-04.atnet.at> References: <3A8AE8FE.D8334752@sis-dev.com> > With the good old unix man pages, I could have a couple of man pages, > a couple of includes and a couple of .c files displayed on my monitor > with all visible, no overlap. damn where did you buy that 200" screen? --------------------------- Newsgroups: comp.os.vxworks Subject: Re: T2 man pages??? Date: Fri, 23 Feb 2001 12:14:47 +0100 From: "Werner Schiendl" Organization: VBS - Vienna Backbone Service Message-ID: <982927151.782094@newsmaster-04.atnet.at> References: <96h9ta$kks$1@overload.lbl.gov> <3A8D3C72.FBF1BECF@lmco.com> <3A8D866F.E07AFAF2@lmco.com> <8b3l6.456515$U46.13556324@news1.sttls1.wa.home.com> Corey Ashford wrote in message news:8b3l6.456515$U46.13556324@news1.sttls1.wa.home.com... > With all due respect, you guys ought to consider taking a leap into the late > 90's ;-) > > What Tornado 2 needs is not Unix style man pages, but a good search engine > for their HTML pages. Something like altavista's advanced search engine > would > be nice. Something where you could search for things like "boot NEAR rom > NEAR > (image OR file)". > In other words, if those WindRiver guys did save the time to write there one half finished search tool and invested it in making HTML Help files from there docs they would: - - take up less space (a lot less, to be precise...) - - have much better index - - have search feature (including AND, OR, NEAR,...) I hope they will lern the lesson one day... Instead of reinventing a wheel, ending with a pentagon shape :-( only my 2 cent werner --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Debugging with MMU Enabled Date: Fri, 23 Feb 2001 11:22:00 -0000 From: "Kelvin Lawson" Message-ID: <975h4f$n9m5j$1@ID-56276.news.dfncis.de> References: <973b0g$ng5gc$1@ID-56276.news.dfncis.de> Thanks for the response Bill. > Kelvin> We can step through usrInit() and some of usrRoot(), however > Kelvin> the debugger hangs during usrMmuInit(). Specifically the last > Kelvin> call it makes is to vmBaseGlobalMapInit(). After this call > Kelvin> the PC becomes 0x00000000, and if you step it goes back to > Kelvin> 0xFFFFFFFC. > > The reason this happens is that when the MMU in enabled, the code uses > the processor pipeline as temporary memory to store some code. The address > space will change under your feet as the current code changes to the MMU > version. So you can find problems if you step line by line over the MMU changeover ? I have found that I can actually run past the MMU initialisation, as long as I don't step through it. I can set a breakpoint in my application code and hit Go. This runs through the MMU changeover, etc. and eventually hits the breakpoint. However as soon as this breakpoint is reached, we cannot do anything more - stepping etc, as the PC has become 0. Could this also be explained by the pipeline, or is that only relevant when stepping through ? I therefore have the same problem whether I step through the MMU changeover or just run through it. It seems like as soon as the debugger kicks in with MMU enabled it gets totally "lost". Actually to be a bit more descriptive, I have noticed that when you stop or hit a breakpoint after MMU is enabled, at first you can see the PC is as you would expect. (i.e. not 0) but as soon as you view mem in a memory window, or view source in the source window, or hit the step button etc. _then_ the PC becomes 0, and you can't step any further. Perhaps this is relevant that the debugger shows the PC correctly initially, but as soon as you try to do anything with the debugger it becomes 0 and you can't step. I've tried setting the PC back to where it should be but the step still doesn't work. > Can you use the T2 debugger with the MMU enabled? It is not clear from > what you have said. I can only speculate without this information. Yes, I can debug using T2 with MMU enabled - that is fine. It is only vCLICK that complains if you enable MMU. I'd be interested to know if anyone else has used vCLICK to debug once MMU has been initialised ? Thanks for your interest, Kelvin. --------------------------- Newsgroups: comp.os.vxworks Subject: Note: 82559ER access to serial EEPROM Date: Fri, 23 Feb 2001 12:22:01 +0000 From: James Marshall Organization: Agilent Technologies UK Ltd Message-ID: <3A9655E9.9ED5B997@agilent.com> This is just a note about something I found recently on x86. The serial EEPROM attached to the 82557/8/9 & 82559ER LAN controllers stores the MAC address, among other things, which VxWorks reads during startup (sys557Init()). The access delay for the EEPROM is ensured using sysDelay() calls. sysDelay() on x86 is a read to a dummy i/o location and takes about 700ns minimum, typically longer. This is fine because the serial EEPROM will work with a delay of 250ns at 5V. The problem is that the 82559ER (and 82559?) works at 3.3V and the EEPROM access delay is 1us - four times longer. Typically sysDelay() plus the call/return time will take 1us but if all code is in the cache as it is when looping to read the EEPROM then the delays are marginal. The solution is to call sysDelay() twice instead of just once. Apparently sysDelay() in most other architectures is a fixed 1us and works fine. James Marshall. --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 09:42:25 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: <6Hsl6.558$yi4.518064@newsr1.u-net.net> References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> <974eua$esl$7@intimidator.databasix.com> Optional Identity wrote in message ... >According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:44:00 >+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >obviously gratuitous attention seeking statement into the aethyr of >alt.usenet.kooks : > >>Optional Identity wrote: >> >>> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:16:31 >>> -0000, the Troll "Dave Korn" Expectorated >>> this obviously gratuitous attention seeking statement into the aethyr >>> of alt.usenet.kooks : >>> >>> >Optional Identity wrote in message ... >>> >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 >>> >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>> >>obviously gratuitous attention seeking statement into the aethyr of >>> >>alt.usenet.kooks : >>> >> >>> >>>Dave Korn wrote: >>> >>> >>> >>>> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >>> >>>> <96uoe3$qr0$4@intimidator.databasix.com>... >>> >>>> >Dave Korn wrote: >>> >>>> > >>> >>>> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message >>> >>>> >> <96qpcd$fr2$1@intimidator.databasix.com>... >>> >>>> >> >Optional Identity wrote: >>> >>>> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. >>> >>>> >> >> >> >> >> >> >> >:( >>> >>>> >> >> >> >> >> >> >> >:( DaveK >>> >>>> >> >> >> >> >> >> >> > >>> >>>> >> >> >> >> >> >> >> >That's nice to know >>> >>>> >> >> >> >> >> >> >> >>> >>>> >> >> >> >> >> >> >> It's not cool either! >>> >>>> >> >> >> >> >> >> > >>> >>>> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. >>> >>>> >> >> >> >> >> >> > >>> >>>> >> >> >> >> >> >> Only for a short time, though. >>> >>>> >> >> >> >> >> > >>> >>>> >> >> >> >> >> >Well at least as long as you need to drive anywhere. >>> >>>> >> >> >> >> >> > >>> >>>> >> >> >> >> >> Yeah that too. >>> >>>> >> >> >> >> > >>> >>>> >> >> >> >> >It's an unfortunate part of life that we have to live with. >>> >>>> >> >> >> >> >Kinda of like work, taxes and death. >>> >>>> >> >> >> >> > >>> >>>> >> >> >> >> And sleep. >>> >>>> >> >> >> > >>> >>>> >> >> >> >Sleep aint to bad when you get enough that is. >>> >>>> >> >> >> > >>> >>>> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. >>> >>>> >> >> > >>> >>>> >> >> >Well the trick to that is just to drink so much that you actually >>> >get >>> >>>> >> >> >pisster while you sleep. Generally in a big pissup session, you >>> >>>> don't >>> >>>> >> >> >actually peack at your pisstest until an hour or 2 after you >>> >stop. >>> >>>> >> >> >So you hit it really hard, and you should peak until a few hours >>> >>>> after, >>> >>>> >> >> >but you go to bed straight after stopping and you will get pissed >>> >>>> while >>> >>>> >> >> >you sleep. EASY. >>> >>>> >> >> > >>> >>>> >> >> Yeah I do this too, but after sleeping for a while I sober up >>> >anyway. >>> >>>> >> > >>> >>>> >> >You have to be difficult don't you? Ok, set your alarm so that >>> >every >>> >>>> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you >>> >>>> >> >pissed. See there's are way around everything. >>> >>>> >> > >>> >>>> >> >>> >>>> >> I find that an IV drip by my bed with a couple of bags of vodka >>> >>>> generally >>> >>>> >> keeps me pissed through the night... >>> >>>> >> >>> >>>> >> DaveK >>> >>>> > >>> >>>> >Oh, I'm always on the lookout for new ways to get smeshed. >>> >>>> >Do you have to have a large knowledge of medicine to be able to set >>> >>>> >this up? And how do I get my hands on the equipment? >>> >>>> >>> >>>> Well it's probably quite important to get the drip rate right, you >>> >don't >>> >>>> want *too* much blood in your alcohol system! I think one of those >>> >machines >>> >>>> they give people for self-administering doses of morphine should do the >>> >job >>> >>>> nicely, you could just tape the button down before you fell asleep. >>> >>>> >>> >>>> DaveK >>> >>> >>> >>>Or if you could just get your hands on morphine........ >>> >>> >>> >>Don't start with the morphine!!! I just love opiates.... >>> >> >>> >>Sorry, I think I must have nodded off for a while, what were we >>> >>talking about? >>> > >>> > I thought I noticed your eyes roll back in your head until all I could see >>> >were the whites... >>> > >>> > DaveK >>> >>> Now I feel very bad, very bad indeed. I think I am dying.... >> >>Nah, just have another drink, you'll feel better. >> >Actually that does work... Mmmmmm yeah. Friday night tonight, in honour of this thread I shall stay off the beer and drink a wide variety of spirits instead this evening. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. >-- > >Optional Identity > >Insane Cross-Poster: MEOW! >Another Fine Post from the Petitmorte Family of Fine Posters, >Hace you had your little death today? >N'est ce pas? >http://www.petitmorte.net/castle.shtml (The Saga Continues) >Skepticult Rank: Colonel >Skepticult Serial Number: 321-29337-833 >I am a lamer! And a lunkhead! --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Fri, 23 Feb 2001 09:43:57 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: <7Hsl6.559$yi4.518243@newsr1.u-net.net> References: <96slrv$a1f$1@intimidator.databasix.com> <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:18:41 >-0000, the Troll "Dave Korn" Expectorated >this obviously gratuitous attention seeking statement into the aethyr >of alt.usenet.kooks : > >>Optional Identity wrote in message ... >>>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 >>>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>>obviously gratuitous attention seeking statement into the aethyr of >>>alt.usenet.kooks : >>> >>>>Optional Identity wrote: >>>> >>>>> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 >>>>> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>>>> obviously gratuitous attention seeking statement into the aethyr of >>>>> alt.usenet.kooks : >>>>> >>>>> >Optional Identity wrote: >>>>> > >>>>> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 >>08:50:21 >>>>> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >>>>> >> obviously gratuitous attention seeking statement into the aethyr of >>>>> >> alt.usenet.kooks : >>>>> >> >>>>> >> >Optional Identity wrote: >>>>> >> > >>>>> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 >>17:22:13 >>>>> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated >>this >>>>> >> >> obviously gratuitous attention seeking statement into the aethyr >>of >>>>> >> >> alt.usenet.kooks : >>>>> >> >> >>>>> >> >> >Optional Identity wrote: >>>>> >> >> > >>>>> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 >>13:52:54 >>>>> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> >>Expectorated this >>>>> >> >> >> obviously gratuitous attention seeking statement into the >>aethyr of >>>>> >> >> >> alt.usenet.kooks : >>>>> >> >> >> >>>>> >> >> >> >Optional Identity wrote: >>>>> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being >>that most people >>>>> >> >> >> >> >are too >>>>> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that >>need to drink more. >>>>> >> >> >> >> >>>> >:(>> >>> > >>>>> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it >>*is* their fault!! >>>>> >> >> >> >> >>>> >:(>> >> >>>>> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. >>They are stupid >>>>> >> >> >> >> >cause >>>>> >> >> >> >> >>>> >:(>> >>they are sober. >>>>> >> >> >> >> >>>> >:(>> > >>>>> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? >>>>> >> >> >> >> >>>> >:(>> > >>>>> >> >> >> >> >>>> >:(>> > DaveK >>>>> >> >> >> >> >>>> >:(>> >>>>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are >>stupid? >>>>> >> >> >> >> >>>> >:(> >>>>> >> >> >> >> >>>> >:(>He could have a point. >>>>> >> >> >> >> >>>> >:( >>>>> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. >>>>> >> >> >> >> >>>> >:( >>>>> >> >> >> >> >>>> >:( DaveK >>>>> >> >> >> >> >>>> > >>>>> >> >> >> >> >>>> >That's nice to know >>>>> >> >> >> >> >>>> >>>>> >> >> >> >> >>>> It's not cool either! >>>>> >> >> >> >> >>> >>>>> >> >> >> >> >>>Unfortunately it is sometimes necessary. >>>>> >> >> >> >> >>> >>>>> >> >> >> >> >>Only for a short time, though. >>>>> >> >> >> >> > >>>>> >> >> >> >> > Preferably no longer than it takes to open the next >>bottle.... >>>>> >> >> >> >> > >>>>> >> >> >> >> Or hip-flask, if you chance to be at work. >>>>> >> >> >> > >>>>> >> >> >> >Or in your slurpie if you are in a dry area.... >>>>> >> >> >> >The cops don't have a clue. :) >>>>> >> >> >> > >>>>> >> >> >> The old vodka in the fruit salad trick. :) >>>>> >> >> > >>>>> >> >> >That works too, I got so shit face at my brothers 21st with that >>one. >>>>> >> >> >Oh and the second hand smoke had a part to play. >>>>> >> >> > >>>>> >> >> I find when doing both it's best to do the pot first. >>>>> >> > >>>>> >> >I don't really smoke pot myself, but if someone is doing it near me, >>>>> >> >I wont complain too much..... >>>>> >> > >>>>> >> It can interfere with ones consumption of alcohol. >>>>> > >>>>> >If not done in the correct manner I am sure it could. So I usually >>don't >>>>> >take that risk, pluss if I'm ever stoned I just sit there and veg out, >>I >>>>> >can't move at all. That's not fun at all. >>>>> > >>>>> I know what you mean!! I too just veg out!! and can't drink enough, >>>>> that ca't be right, huh? >>>> >>>>Definetly unacceptable... Though if I drink alot then smoke a bit, then >>>>I don't veg out, though I don't often do this. >>>> >>>I try to avoid it when I am horribly pissed, it just makes me fall >>>asleep. >> >> It takes years of practise and intensive yogic training to be able to >>drink yourself silly and then smoke yourself stupid without pukeing or >>passing out... Fortunately the practise is rewarding in and of itself :-D >> >> DaveK > >It gets easier when you are fully habituated to both. I still find it >is better to smoke early in the night, and then drink. A couple of >cones in the morning is good for teh hang-over as well. That's Dr. DaveK's all-natural herbal hangover remedy you're talking about there! DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: taskSuspend - What will be happened in long long time? Date: Fri, 23 Feb 2001 09:54:07 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: <7Hsl6.560$yi4.518149@newsr1.u-net.net> References: <%ekl6.145$kd4.3424@news2.bora.net> ŔĚ˝˝ wrote in message >Dear all. > >I'm a biginner on VxWorks. >On the project, my job, I use "taskSuspend" to suspend a task for some time >as below. > >FOREVER { > if ( iAmActive ) > do something; > else > taskSuspend (myTaskId); >} > >While, if the "some time" would be "very long time", then what will be >happened >on the system ? >I did not test the "taskSuspend" function for "long time" yet. No problem. The task will stay suspended forever, or until taskResume is called. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Debugging with MMU Enabled Date: Fri, 23 Feb 2001 07:57:29 -0500 From: George Varndell Organization: Varndell Engineering, LLC. Message-ID: <3A965E39.68446BCB@prodigy.net> References: <973b0g$ng5gc$1@ID-56276.news.dfncis.de> Reply-To: george@varndellengineering.com Kelvin Lawson wrote: > > Is it possible to have basic MMU enabled while debugging with > visionCLICK/ICE PowerPC JTAG debuggers ? Yes, on all PPC processors and all other supported architecures. > > We can step through usrInit() and some of usrRoot(), however the debugger > hangs during usrMmuInit(). Specifically the last call it makes is to > vmBaseGlobalMapInit(). After this call the PC becomes 0x00000000, and if you > step it goes back to 0xFFFFFFFC. I've seen this stepping backwards on the 8260 before. It happens when the core has reset and Click has lost sync with the target. > > It is actually possible to set a hardware breakpoint much further into the > code, and the code does reach the breakpoint, however as soon as BKM mode > kicks in you become unable to step any further. We're using a PPC755 on the > Scout board. > > We can debug if we turn MMU off, or we can use the T2 debugger, but we'd > like to find a way to use vCLICK with MMU enabled. Any ideas much > appreciated. When you enable the MMU, I assume the caches are enabled throughout most of the address space? By any chance, when you lose contact, is the 755 really hot? This is just a hunch, but you might try throttling the ICache. Of course, there could be many other explanations for what you're seeing. Best Regards, George Varndell - -- Embedded Systems Expertise Varndell Engineering, LLC. http://www.varndellengineering.com 81 Baltimore St. Suite 206 301-722-9180 Cumberland MD. 21502 --------------------------- Newsgroups: comp.os.vxworks Subject: Re: make for Win32? Date: Fri, 23 Feb 2001 13:15:14 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <973oh8$hoh$1@overload.lbl.gov> <3a9577fc.254627795@news> <982925190.691726@newsmaster-04.atnet.at> Werner Schiendl wrote in message <982925190.691726@newsmaster-04.atnet.at>... >Hello, > >sorry, this is a little off topic maybe... > >but do you know of a GNU make (or similar powerful) version for Windows NT / >Windows 2000 that can cope with embedded spaces in file and/or directory >names? >The versions I found up to now cannot deal with that... Cygwin Gnu make should handle them just fine as long as you escape each space with a '\' backslash. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Unix to Win platform Date: Fri, 23 Feb 2001 13:16:27 -0000 From: "Dave Korn" Organization: Lumber Cartel (tinlc) Members #2234-2237 (owing to browser refresh) Message-ID: References: <973oh8$hoh$1@overload.lbl.gov> <3a9577fc.254627795@news> Bob DeJoie wrote in message <3a9577fc.254627795@news>... >Hi, >I come from a Unix back ground and created custom makefiles >under T1. I found that the version of Gnu make that comes with >Tornado was not able to do recursive make calls so instead >used the version that comes with bash. > >When we went to T2 nothing much changed. I am building >from a bash window and not from inside the IDE. One thing may have changed: I've only ever had T2, and I found that recursive makes work fine. DaveK - -- They laughed at Galileo. They laughed at Copernicus. They laughed at Columbus. But remember, they also laughed at Bozo the Clown. --------------------------- Newsgroups: comp.os.vxworks,comp.protocols.snmp Subject: Newbie needs help with embedded SNMP agent Date: Fri, 23 Feb 2001 13:50:22 GMT From: "joeslugg" Organization: Worldpath Internet Services (worldpath.net) Message-ID: Hi, We're going to be building SNMP support for our network device that runs VxWorks. We're likely to purchase the WindRiver offering for our agent, so assuming that works out OK, I'll just need to build in MIB support to the applications running on the box. I'm trying to understand that part. I know that WindRiver's MIB compiler will output a bunch of C code stubs for 'get' 'set' and other routines for each MIB object. I figure I can put code in those stubs that accesses individual variables within each application task (more or less) directly. Is that a bad idea? I know some implementations have some kind of elaborate database that sits in between the agent and the applications. Then the agent would act upon database elements, as would the applications while they're running (instead of using local variables). Is this sort of layer necessary for some reason that I'm not grasping? (I know - 'it depends' :^) Thanks -J --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Sat, 24 Feb 2001 02:57:34 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <9760ue$3jd$9@intimidator.databasix.com> References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719su$lp0$1@intimidator.databasix.com> <974eua$esl$7@intimidator.databasix.com> <6 Dave Korn wrote: > Optional Identity wrote in message ... > >According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:44:00 > >+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >obviously gratuitous attention seeking statement into the aethyr of > >alt.usenet.kooks : > > > >>Optional Identity wrote: > >> > >>> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:16:31 > >>> -0000, the Troll "Dave Korn" Expectorated > >>> this obviously gratuitous attention seeking statement into the aethyr > >>> of alt.usenet.kooks : > >>> > >>> >Optional Identity wrote in message ... > >>> >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:59:30 > >>> >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >>> >>obviously gratuitous attention seeking statement into the aethyr of > >>> >>alt.usenet.kooks : > >>> >> > >>> >>>Dave Korn wrote: > >>> >>> > >>> >>>> STFGP <"goose_fp"@ pacific.net.au> > wrote in message > >>> >>>> <96uoe3$qr0$4@intimidator.databasix.com>... > >>> >>>> >Dave Korn wrote: > >>> >>>> > > >>> >>>> >> STFGP <"goose_fp"@ pacific.net.au> > wrote in message > >>> >>>> >> <96qpcd$fr2$1@intimidator.databasix.com>... > >>> >>>> >> >Optional Identity wrote: > >>> >>>> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint > clever. > >>> >>>> >> >> >> >> >> >> >> >:( > >>> >>>> >> >> >> >> >> >> >> >:( DaveK > >>> >>>> >> >> >> >> >> >> >> > > >>> >>>> >> >> >> >> >> >> >> >That's nice to know > >>> >>>> >> >> >> >> >> >> >> > >>> >>>> >> >> >> >> >> >> >> It's not cool either! > >>> >>>> >> >> >> >> >> >> > > >>> >>>> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. > >>> >>>> >> >> >> >> >> >> > > >>> >>>> >> >> >> >> >> >> Only for a short time, though. > >>> >>>> >> >> >> >> >> > > >>> >>>> >> >> >> >> >> >Well at least as long as you need to drive > anywhere. > >>> >>>> >> >> >> >> >> > > >>> >>>> >> >> >> >> >> Yeah that too. > >>> >>>> >> >> >> >> > > >>> >>>> >> >> >> >> >It's an unfortunate part of life that we have to live > with. > >>> >>>> >> >> >> >> >Kinda of like work, taxes and death. > >>> >>>> >> >> >> >> > > >>> >>>> >> >> >> >> And sleep. > >>> >>>> >> >> >> > > >>> >>>> >> >> >> >Sleep aint to bad when you get enough that is. > >>> >>>> >> >> >> > > >>> >>>> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I > find. > >>> >>>> >> >> > > >>> >>>> >> >> >Well the trick to that is just to drink so much that you > actually > >>> >get > >>> >>>> >> >> >pisster while you sleep. Generally in a big pissup session, > you > >>> >>>> don't > >>> >>>> >> >> >actually peack at your pisstest until an hour or 2 after you > >>> >stop. > >>> >>>> >> >> >So you hit it really hard, and you should peak until a few > hours > >>> >>>> after, > >>> >>>> >> >> >but you go to bed straight after stopping and you will get > pissed > >>> >>>> while > >>> >>>> >> >> >you sleep. EASY. > >>> >>>> >> >> > > >>> >>>> >> >> Yeah I do this too, but after sleeping for a while I sober up > >>> >anyway. > >>> >>>> >> > > >>> >>>> >> >You have to be difficult don't you? Ok, set your alarm so that > >>> >every > >>> >>>> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep > you > >>> >>>> >> >pissed. See there's are way around everything. > >>> >>>> >> > > >>> >>>> >> > >>> >>>> >> I find that an IV drip by my bed with a couple of bags of > vodka > >>> >>>> generally > >>> >>>> >> keeps me pissed through the night... > >>> >>>> >> > >>> >>>> >> DaveK > >>> >>>> > > >>> >>>> >Oh, I'm always on the lookout for new ways to get smeshed. > >>> >>>> >Do you have to have a large knowledge of medicine to be able to > set > >>> >>>> >this up? And how do I get my hands on the equipment? > >>> >>>> > >>> >>>> Well it's probably quite important to get the drip rate right, > you > >>> >don't > >>> >>>> want *too* much blood in your alcohol system! I think one of those > >>> >machines > >>> >>>> they give people for self-administering doses of morphine should do > the > >>> >job > >>> >>>> nicely, you could just tape the button down before you fell asleep. > >>> >>>> > >>> >>>> DaveK > >>> >>> > >>> >>>Or if you could just get your hands on morphine........ > >>> >>> > >>> >>Don't start with the morphine!!! I just love opiates.... > >>> >> > >>> >>Sorry, I think I must have nodded off for a while, what were we > >>> >>talking about? > >>> > > >>> > I thought I noticed your eyes roll back in your head until all I > could see > >>> >were the whites... > >>> > > >>> > DaveK > >>> > >>> Now I feel very bad, very bad indeed. I think I am dying.... > >> > >>Nah, just have another drink, you'll feel better. > >> > >Actually that does work... > > Mmmmmm yeah. Friday night tonight, in honour of this thread I shall stay > off the beer and drink a wide variety of spirits instead this evening. > > DaveK Ah shucks DaveK. I really apreciate that. I'm currently finished with the C&N scotch and am now onto the JD. > They laughed at Galileo. They laughed at Copernicus. They laughed at > Columbus. But remember, they also laughed at Bozo the Clown. > >Optional Identity > > > >Insane Cross-Poster: MEOW! > >Another Fine Post from the Petitmorte Family of Fine Posters, > >Hace you had your little death today? > >N'est ce pas? > >http://www.petitmorte.net/castle.shtml (The Saga Continues) > >Skepticult Rank: Colonel > >Skepticult Serial Number: 321-29337-833 > >I am a lamer! And a lunkhead! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Sat, 24 Feb 2001 02:55:57 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <9760rf$3jd$8@intimidator.databasix.com> References: <96slm3$5j2$4@intimidator.databasix.com> <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> <0l889ts97snuhm2g6blquaqp1c7d14kqos@4ax.com> <971a0f$lp0$2@intimidator.databasix.com> <974f2k$esl$8@intimidator.databasix.com> According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:46:03 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 08:01:22 > >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> obviously gratuitous attention seeking statement into the aethyr of > >> alt.usenet.kooks : > >> > >> >Optional Identity wrote: > >> > > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 > >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> alt.usenet.kooks : > >> >> > >> >> >Optional Identity wrote: > >> >> > > >> >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 > >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> alt.usenet.kooks : > >> >> >> > >> >> >> >Optional Identity wrote: > >> >> >> > > >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 > >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> >> alt.usenet.kooks : > >> >> >> >> > >> >> >> >> >Optional Identity wrote: > >> >> >> >> > > >> >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 > >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> >> >> alt.usenet.kooks : > >> >> >> >> >> > >> >> >> >> >> >Optional Identity wrote: > >> >> >> >> >> > > >> >> >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 > >> >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> >> >> >> >> alt.usenet.kooks : > >> >> >> >> >> >> > >> >> >> >> >> >> >Optional Identity wrote: > >> >> >> >> >> > > >> >> >> >> >> >[snip] > >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> >>Yep, it came to me over a bottle of scotch. They are stupid cause > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> >>they are sober. > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > Are you sure it isn't the other way round ? > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > DaveK > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> > >> >> >> >> >> >> >> >> >> >> >> >> >:(>> Do you mean they are sober because they are stupid? > >> >> >> >> >> >> >> >> >> >> >> >> >:(> > >> >> >> >> >> >> >> >> >> >> >> >> >:(>He could have a point. > >> >> >> >> >> >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >> >> >> >> >> >:( Sobriety. It aint big and it aint clever. > >> >> >> >> >> >> >> >> >> >> >> >> >:( > >> >> >> >> >> >> >> >> >> >> >> >> >:( DaveK > >> >> >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >> >> >That's nice to know > >> >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> It's not cool either! > >> >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >> >Unfortunately it is sometimes necessary. > >> >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >> Only for a short time, though. > >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> >Well at least as long as you need to drive anywhere. > >> >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >> Yeah that too. > >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> >It's an unfortunate part of life that we have to live with. > >> >> >> >> >> >> >> >> >> >Kinda of like work, taxes and death. > >> >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >> And sleep. > >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> >Sleep aint to bad when you get enough that is. > >> >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >> Sleep is ok, it's just hard to drink when your asleep, I find. > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> >Well the trick to that is just to drink so much that you actually get > >> >> >> >> >> >> >> >pisster while you sleep. Generally in a big pissup session, you don't > >> >> >> >> >> >> >> >actually peack at your pisstest until an hour or 2 after you stop. > >> >> >> >> >> >> >> >So you hit it really hard, and you should peak until a few hours after, > >> >> >> >> >> >> >> >but you go to bed straight after stopping and you will get pissed while > >> >> >> >> >> >> >> >you sleep. EASY. > >> >> >> >> >> >> >> > > >> >> >> >> >> >> >> Yeah I do this too, but after sleeping for a while I sober up anyway. > >> >> >> >> >> >> > > >> >> >> >> >> >> >You have to be difficult don't you? Ok, set your alarm so that every > >> >> >> >> >> >> >2 hours you get up and throw back 2 or 3 quick drinks to keep you > >> >> >> >> >> >> >pissed. See there's are way around everything. > >> >> >> >> >> >> > > >> >> >> >> >> >> And clearly you have though of them all. > >> >> >> >> >> > > >> >> >> >> >> >Not all of them, just most. I have got to leave myself something to do > >> >> >> >> >> >for the next 20 odd years. > >> >> >> >> >> > > >> >> >> >> >> What you planning on doing after 20 years? > >> >> >> >> > > >> >> >> >> >Ops, I meant to say after the next 20 odd years. > >> >> >> >> >Well, medically, my body will only be able to keep on drinking > >> >> >> >> >for the next 20 odd years. So I'm going to have something to > >> >> >> >> >do after those 20 odd years are up... > >> >> >> >> > > >> >> >> >> You could just save up for a liver transplant. > >> >> >> > > >> >> >> >Shit. Fuck. > >> >> >> >Do you realise how much time you just save me > >> >> >> >with those 9 words? > >> >> >> > > >> >> >> One of the benefits of age and experience. > >> >> > > >> >> >Shit, well I owe you. The first shout is on me. > >> >> >Though you better print this off and bring it with you for proof as > >> >> >I will forget and deny most vigioursly that I said it. :) > >> >> > > >> >> > > >> >> Nah, I don't care bout teh shouts!! I will just say "liver" over and > >> >> over til you buy me a drink!!! > >> > > >> >That could work, depending on how much I already had already > >> >had to drink, not enough and you would get your drink. To much > >> >and I would YELL "FUCK OFF" over and over until you bought > >> >me 3 rounds. > >> > > >> That would work, I am sensitive and I will buy drinks for someone > >> yelling "FUCK OFF" until they stop! > > > >That is very interesting. Though I wouldn't take advantage, after a > >bit of yelling my throat would get dry. And then I would have to > >concentrate on the drinking. > > > I figure that is teh best way to end teh argument. Yep, just agree to shut the fuck up and let the drinking do the talking. And no, I never played footy. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! And a lunkhead! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Sat, 24 Feb 2001 02:58:26 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <97610a$3jd$10@intimidator.databasix.com> References: <96o6jr$on9$4@upa.databasix.com> <96qpcd$fr2$1@intimidator.databasix.com> <96uoe3$qr0$4@intimidator.databasix.com> <9719qb$ios$2@intimidator.databasix.com> <974es3$esl$6@intimidator.databasix.com> According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:42:48 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:58:06 > >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> obviously gratuitous attention seeking statement into the aethyr of > >> alt.usenet.kooks : > >> > >> >Optional Identity wrote: > >> > > >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 10:34:18 > >> >> GMT, the Troll JayDee Expectorated this > >> >> obviously gratuitous attention seeking statement into the aethyr of > >> >> alt.usenet.kooks : > >> >> > >> >> >On Wed, 21 Feb 2001 08:49:12 +1100, STFGP <"goose_fp"@ > >> >> >pacific.net.au> wrote: > >> >> > > >> >> > > >> >> >>> I find that an IV drip by my bed with a couple of bags of vodka generally > >> >> >>> keeps me pissed through the night... > >> >> > > >> >> >>> DaveK > >> >> > > >> >> >>Oh, I'm always on the lookout for new ways to get smeshed. > >> >> >>Do you have to have a large knowledge of medicine to be able to set > >> >> >>this up? And how do I get my hands on the equipment? > >> >> > > >> >> >you can use an ultrasonic humidifier to produce ethyl alcohol > >> >> >vapor...breathe that shit and you'll get fucked-up, real-good > >> >> > > >> >> >best bet is to distill 100-proof vodka into pure grain alcohol > >> >> > > >> >> >then, put it in a jug with an appropriate amount of anhydrous > >> >> >magnesium sulfate, which removes the last traces of water > >> >> > > >> >> >...it's the killer shit, lemme-tellya > >> >> > > >> >> SUBSCRIBE!!!!! > >> > > >> >Um... The posibilities. > >> > > >> It is a worry, isn't it? > > > >Yes, but it would be interesting to try... > > > Sad, but true!!! I now have a mission in life. Get with a nice nurse to try that out... > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! And a lunkhead! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: comp.os.vxworks Subject: Re: remote load and startup Date: Fri, 23 Feb 2001 07:47:26 -0800 From: David Zempel Organization: Lockheed Martin Corporation Message-ID: <3A96860E.DDF715BA@excite.com> References: <3A92B843.75E23955@excite.com> <3A933406.F31AB055@yahoo.com> <3A93E379.694B0CE3@excite.com> <3A9498A0.175DBAA9@yahoo.com> Yes, that is correct. Infact, the original script I posted won't work anyway even between two unix systems. The problem there lies with redirecting input into xterm. I have gotten around this by writing my own terminal emulator in Perl that uses system level reads and writes. This is still not the ideal solution though because our target system outputs unpredictable messages that are impossible to catch without blocking on a read. So once I complete the initialization process, I send a logout command and then I bring up an xterm and rlogin back to the target. Crude, but it works. Thanks all, David Zempel. --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Sat, 24 Feb 2001 03:02:17 +1100 From: STFGP <"goose_fp"@ pacific.net.au> Organization: The Fucking Pigs Message-ID: <97617h$3jd$11@intimidator.databasix.com> References: <96t248$lh1$8@intimidator.databasix.com> <96uogc$qr0$5@intimidator.databasix.com> <4pu59to7pt81405d5btmkpr97r97hkl776@4ax.com> <96vnia$rln$5@intimidator.databasix.com> <9p889tg9s15p15dnq85o12jjrq3co9mlc8@4ax.com> <9719op$ios$1@intimidator.databasix.com> <974eqj$esl$5@intimidator.databasix.com> <27mb9t4f3qbv2lf5pumit9los46m Optional Identity wrote: > According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:42:01 > +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > obviously gratuitous attention seeking statement into the aethyr of > alt.usenet.kooks : > > >Optional Identity wrote: > > > >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 10:18:41 > >> -0000, the Troll "Dave Korn" Expectorated > >> this obviously gratuitous attention seeking statement into the aethyr > >> of alt.usenet.kooks : > >> > >> >Optional Identity wrote in message ... > >> >>According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 07:57:16 > >> >>+1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >>obviously gratuitous attention seeking statement into the aethyr of > >> >>alt.usenet.kooks : > >> >> > >> >>>Optional Identity wrote: > >> >>> > >> >>>> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:40:27 > >> >>>> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >>>> obviously gratuitous attention seeking statement into the aethyr of > >> >>>> alt.usenet.kooks : > >> >>>> > >> >>>> >Optional Identity wrote: > >> >>>> > > >> >>>> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 > >> >08:50:21 > >> >>>> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this > >> >>>> >> obviously gratuitous attention seeking statement into the aethyr of > >> >>>> >> alt.usenet.kooks : > >> >>>> >> > >> >>>> >> >Optional Identity wrote: > >> >>>> >> > > >> >>>> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 > >> >17:22:13 > >> >>>> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated > >> >this > >> >>>> >> >> obviously gratuitous attention seeking statement into the aethyr > >> >of > >> >>>> >> >> alt.usenet.kooks : > >> >>>> >> >> > >> >>>> >> >> >Optional Identity wrote: > >> >>>> >> >> > > >> >>>> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 > >> >13:52:54 > >> >>>> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> > >> >Expectorated this > >> >>>> >> >> >> obviously gratuitous attention seeking statement into the > >> >aethyr of > >> >>>> >> >> >> alt.usenet.kooks : > >> >>>> >> >> >> > >> >>>> >> >> >> >Optional Identity wrote: > >> >>>> >> >> >> >> >>>> >:(>> >>> >No. We are funny. The only problem being > >> >that most people > >> >>>> >> >> >> >> >are too > >> >>>> >> >> >> >> >>>> >:(>> >>> >stupid to get out jokes. It's them that > >> >need to drink more. > >> >>>> >> >> >> >> >>>> >:(>> >>> > > >> >>>> >> >> >> >> >>>> >:(>> >>> I never thought of it that way, but yes, it > >> >*is* their fault!! > >> >>>> >> >> >> >> >>>> >:(>> >> > >> >>>> >> >> >> >> >>>> >:(>> >>Yep, it came to me over a bottle of scotch. > >> >They are stupid > >> >>>> >> >> >> >> >cause > >> >>>> >> >> >> >> >>>> >:(>> >>they are sober. > >> >>>> >> >> >> >> >>>> >:(>> > > >> >>>> >> >> >> >> >>>> >:(>> > Are you sure it isn't the other way round ? > >> >>>> >> >> >> >> >>>> >:(>> > > >> >>>> >> >> >> >> >>>> >:(>> > DaveK > >> >>>> >> >> >> >> >>>> >:(>> > >> >>>> >> >> >> >> >>>> >:(>> Do you mean they are sober because they are > >> >stupid? > >> >>>> >> >> >> >> >>>> >:(> > >> >>>> >> >> >> >> >>>> >:(>He could have a point. > >> >>>> >> >> >> >> >>>> >:( > >> >>>> >> >> >> >> >>>> >:( Sobriety. It aint big and it aint clever. > >> >>>> >> >> >> >> >>>> >:( > >> >>>> >> >> >> >> >>>> >:( DaveK > >> >>>> >> >> >> >> >>>> > > >> >>>> >> >> >> >> >>>> >That's nice to know > >> >>>> >> >> >> >> >>>> > >> >>>> >> >> >> >> >>>> It's not cool either! > >> >>>> >> >> >> >> >>> > >> >>>> >> >> >> >> >>>Unfortunately it is sometimes necessary. > >> >>>> >> >> >> >> >>> > >> >>>> >> >> >> >> >>Only for a short time, though. > >> >>>> >> >> >> >> > > >> >>>> >> >> >> >> > Preferably no longer than it takes to open the next > >> >bottle.... > >> >>>> >> >> >> >> > > >> >>>> >> >> >> >> Or hip-flask, if you chance to be at work. > >> >>>> >> >> >> > > >> >>>> >> >> >> >Or in your slurpie if you are in a dry area.... > >> >>>> >> >> >> >The cops don't have a clue. :) > >> >>>> >> >> >> > > >> >>>> >> >> >> The old vodka in the fruit salad trick. :) > >> >>>> >> >> > > >> >>>> >> >> >That works too, I got so shit face at my brothers 21st with that > >> >one. > >> >>>> >> >> >Oh and the second hand smoke had a part to play. > >> >>>> >> >> > > >> >>>> >> >> I find when doing both it's best to do the pot first. > >> >>>> >> > > >> >>>> >> >I don't really smoke pot myself, but if someone is doing it near me, > >> >>>> >> >I wont complain too much..... > >> >>>> >> > > >> >>>> >> It can interfere with ones consumption of alcohol. > >> >>>> > > >> >>>> >If not done in the correct manner I am sure it could. So I usually > >> >don't > >> >>>> >take that risk, pluss if I'm ever stoned I just sit there and veg out, > >> >I > >> >>>> >can't move at all. That's not fun at all. > >> >>>> > > >> >>>> I know what you mean!! I too just veg out!! and can't drink enough, > >> >>>> that ca't be right, huh? > >> >>> > >> >>>Definetly unacceptable... Though if I drink alot then smoke a bit, then > >> >>>I don't veg out, though I don't often do this. > >> >>> > >> >>I try to avoid it when I am horribly pissed, it just makes me fall > >> >>asleep. > >> > > >> > It takes years of practise and intensive yogic training to be able to > >> >drink yourself silly and then smoke yourself stupid without pukeing or > >> >passing out... Fortunately the practise is rewarding in and of itself :-D > >> > > >> > DaveK > >> > >> It gets easier when you are fully habituated to both. I still find it > >> is better to smoke early in the night, and then drink. A couple of > >> cones in the morning is good for teh hang-over as well. > > > >Brekky bongs... No thanks. I'll stick with the hangover or just > >keep drinking. > > > You are sick!! Oh, another vodka? OK!!! If you insist, even if you > don't!!! I do insist. Only if you want too though. I'm not sick, just asthmatic, and can do without smoking, and will never do it first thing in the morning. > Optional Identity > > Insane Cross-Poster: MEOW! > Another Fine Post from the Petitmorte Family of Fine Posters, > Hace you had your little death today? > N'est ce pas? > http://www.petitmorte.net/castle.shtml (The Saga Continues) > Skepticult Rank: Colonel > Skepticult Serial Number: 321-29337-833 > I am a lamer! And a lunkhead! - -- The Fucking Pigs Two guys, Scotch and Coke Belches, guitars and cakewalk The Fucking Pigs ROCK!!!! http://www.petitmorte.net/fuckingpigs/ STFGP - Freeballing since 1999 --------------------------- Newsgroups: comp.os.vxworks Subject: Re: Debugging with MMU Enabled Date: Fri, 23 Feb 2001 16:11:44 GMT From: Bill Pringlemeir Organization: Factory of the mind Message-ID: References: <973b0g$ng5gc$1@ID-56276.news.dfncis.de> <975h4f$n9m5j$1@ID-56276.news.dfncis.de> Sender: bpringlemeir@DeadDuck Kelvin> I therefore have the same problem whether I step through the Kelvin> MMU changeover or just run through it. It seems like as soon Kelvin> as the debugger kicks in with MMU enabled it gets totally Kelvin> "lost". Actually to be a bit more descriptive, I have noticed Kelvin> that when you stop or hit a breakpoint after MMU is enabled, Kelvin> at first you can see the PC is as you would expect. (i.e. not Kelvin> 0) but as soon as you view mem in a memory window, or view Kelvin> source in the source window, or hit the step button Kelvin> etc. _then_ the PC becomes 0, and you can't step any I think Chris Leddy had a good point, Chris> The PPC603 has two exception vector locations, one in high Chris> memory and one in low memory. The MPC860 also has this; that is the PowerPC chip that I have used. However it has a bdm interface, so I don't think that is the chip you are using. I have also seen BDM/Jtag devices exhibit this type of behavior if the interface pins aren't all connected properly. For instance if the vClick wants a RESET line and the hardware doesn't provide this. However, since it does work without MMU this seems less likely especially since you seem to be using an off the shelf board. good luck, Bill... - -- Useful vxWorks URLS, "http://www.xs4all.nl/~borkhuis/vxworks/vxworks.html" "http://www.xs4all.nl/~borkhuis/vxworks/vxw_pt9.html" --------------------------- Newsgroups: comp.os.vxworks Subject: Re: what does mean the warning "trigraph(s) encountered" Date: Fri, 23 Feb 2001 19:23:16 GMT From: "Kris" Organization: Magma Communications Ltd. Message-ID: References: <96vgsv$h40$1@news.etri.re.kr> <3A938FB6.6080503@snellwilcox.com> Reply-To: "Kris" I found that when I had "???" in your code, the compiler complained that I had trigraph(s), even if the "???" was in a comment. Kris "Simon Farnsworth" wrote in message news:3A938FB6.6080503@snellwilcox.com... > ĂÖâ˝Ä wrote: > > > I've met this warning messages from Tornado 1 "xxx.c : warning: 1 > > trigraph(s) encountered" > > > > I don't know the meaning of this warning... -_-; > As it says in the GNU Toolkit manual (or the gcc info pages), trigraphs > are ANSI C's horrible method for handling systems that do not have all > the C special characters. Instead combinations of 3 characters are used, > so %%/ might mean \ (I don't know for certain!) > > GCC is aware that most people don't use trigraphs, so it warns you that > you have entered one. You may find that the code in xxx.c behaves > slightly unexpectedly, as some of what the compiler saw does not match > what you think you typed. > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: VxWorks Date: Fri, 23 Feb 2001 19:43:28 GMT From: "Kris" Organization: Magma Communications Ltd. Message-ID: References: <96ders$9gd$1@overload.lbl.gov> Reply-To: "Kris" Here is a good link http://www.smartmodulartech.com/systems/library/docs/vxworks/vxintro/VXINTRO .HTM Kris "Gokul Gopalasamy" wrote in message news:96ders$9gd$1@overload.lbl.gov... > Hi all, > > I'm a beginner in VxWorks. Can anyone suggest me some links or whitepapers regarding > VxWorks. Suggestions will be sincerely appreciated. > > Thanks and Regards > Gokul > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > "Have the courage to face the Truth" > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Gokul Gopalasamy, > Global R&D, > Wipro Technologies, > Tel: 91-44-4500200-209 Ext: 2287 > Fax: 91-44-4500250 > Email: gokul.gopalasamy@wipro.com > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > --------------------------- Newsgroups: comp.os.vxworks Subject: Re: VxWorks(64 Bit Addition). Date: Fri, 23 Feb 2001 20:08:22 -0000 From: "David Laight" Organization: BT Internet Message-ID: <976fn6$i38$1@plutonium.btinternet.com> References: <974v6n$b47$1@overload.lbl.gov> > How to perform addition of 64 bit integers on a 32 bit processor.(MIPS, > R4000). > Can someone pass me code in "C".... Two obvious answers... 1) gcc (usually) supports the type 'long long' which will (typically) be 64bit. for ANSI C "inttypes.h" should define an int64_t (if supported by your compilation system). However I don't recall the vxWorks one being conformant :-) 2) typedef struct { uint32_t hi; uint32_t lo; } my_uint64; #define my_add64( a, b ) \ ((a.lo += b.lo) < b.lo ? a.hi += b.hi + 1 : a.hi += b.hi) This works because a + b < b is only true if the number wrapped. If you do this, it is probably worth making the order of the structure fields match the endianness of your system. (My example is bid-endian - eg 68xxx, not x86.) David --------------------------- Newsgroups: alt.fan.karl-malden.nose,alt.usenet.kooks,news.admin.net-abuse.usenet,comp.os.vxworks,rec.arts.tv.soaps.abc,rec.arts.tv.soaps.cbs,rec.arts.tv.soaps.misc,alt.fan.fucking-pigs,alt.genius.musical.ward-hog Subject: Re: [spoiler] Re: Not enough Fat Chicks in soaps Date: Sat, 24 Feb 2001 07:45:44 +1100 From: Optional Identity Organization: Petitmorte.net Message-ID: References: <96t22a$lh1$7@intimidator.databasix.com> <96uoal$qr0$3@intimidator.databasix.com> <6nu59to1omj583nudug86egn9dk8rrnnnu@4ax.com> <96vng7$rln$4@intimidator.databasix.com> <0l889ts97snuhm2g6blquaqp1c7d14kqos@4ax.com> <971a0f$lp0$2@intimidator.databasix.com> <974f2k$esl$8@intimidator.databasix.com> <9760rf$3jd$8@intimidator.databasix.com> Reply-To: Optional_Identity@petitmorte.net According to the old (pre-meow) calendar, on Sat, 24 Feb 2001 02:55:57 +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this obviously gratuitous attention seeking statement into the aethyr of alt.usenet.kooks : >Optional Identity wrote: > >> According to the old (pre-meow) calendar, on Fri, 23 Feb 2001 12:46:03 >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> obviously gratuitous attention seeking statement into the aethyr of >> alt.usenet.kooks : >> >> >Optional Identity wrote: >> > >> >> According to the old (pre-meow) calendar, on Thu, 22 Feb 2001 08:01:22 >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> alt.usenet.kooks : >> >> >> >> >Optional Identity wrote: >> >> > >> >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 17:39:20 >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >Optional Identity wrote: >> >> >> > >> >> >> >> According to the old (pre-meow) calendar, on Wed, 21 Feb 2001 08:47:17 >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> > >> >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 17:21:05 >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> >> > >> >> >> >> >> >> According to the old (pre-meow) calendar, on Tue, 20 Feb 2001 13:49:51 >> >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >> >> >> >> >Optional Identity wrote: >> >> >> >> >> >> > >> >> >> >> >> >> >> According to the old (pre-meow) calendar, on Mon, 19 Feb 2001 20:40:41 >> >> >> >> >> >> >> +1100, the Troll STFGP <"goose_fp"@ pacific.net.au> Expectorated this >> >> >> >> >> >> >> obviously gratuitous attention seeking statement into the aethyr of >> >> >> >> >> >> >> alt.usenet.kooks : >> >> >> >> >> >> >> >> >> >> >> >> >> >> >Optional Identity