2013-07-29T00:11:23 *** monstr__ has joined #rtems 2013-07-29T00:48:56 *** freenix has joined #rtems 2013-07-29T01:09:43 *** hiddenpearls has joined #rtems 2013-07-29T01:24:44 hi kiwichris 2013-07-29T01:25:15 hi 2013-07-29T01:27:20 In RTL, I'm still stuck with undefined references while linking the second time with the symbol table. I was wondering.. do you think the compiler might have something to do with it? Perhaps I need to get a newer version? 2013-07-29T01:28:18 Also, if I generate the C file with --no-embed, I can link it into the program fine, but I'm not sure if it's going to be correct. 2013-07-29T01:28:39 but that's the workaround I'm doing for now 2013-07-29T01:42:38 *** sebhub has joined #rtems 2013-07-29T01:43:00 good morning 2013-07-29T01:59:59 the9a3eedi, the no embed creates an object file you load at runtime to load the symbols 2013-07-29T02:00:43 When you embed you link once and then again with the object file with the symbols. Everything else must be the same 2013-07-29T02:01:04 What symbols are undefined ? 2013-07-29T02:11:07 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T02:14:26 *** hiddenpearls has joined #rtems 2013-07-29T02:39:18 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-07-29T02:42:49 kiwichris, I realize that no embed is meant for loading at run-time, but from what I can tell the only difference in the generated file is that the addresses are hard-coded rather than referenced 2013-07-29T02:43:33 hundreds of symbols are undefined.. including RTL functions, functions that I've written and clearly defined, among others 2013-07-29T02:43:50 oh, he left 2013-07-29T02:44:05 hm 2013-07-29T03:10:14 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T03:13:58 *** hiddenpearls has joined #rtems 2013-07-29T03:58:03 *** arvind_khadri has joined #rtems 2013-07-29T04:19:50 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T04:45:16 *** arvind_khadri has quit IRC (Ping timeout: 256 seconds) 2013-07-29T04:52:41 *** arvind_khadri has joined #rtems 2013-07-29T05:03:26 *** hiddenpearls has joined #rtems 2013-07-29T06:01:46 *** tictoc has joined #rtems 2013-07-29T06:58:48 Hi there. How can I get information on how many ticks a certain thread was executing? I tried using times(&ptms) as described in the POSIX user doc. It should return the total number of ticks since system boot and the number of ticks the calling thread was executed. However it only returns the system count, the thread count is always zero. If I call the function cpuuse(), the threads and the... 2013-07-29T06:58:50 ...corresponding execution time is printed correctly. Do I need to configure something in advance to get the tick count per thread or is there another function? Regards 2013-07-29T07:04:23 *** MegaAlex|away has quit IRC (Ping timeout: 268 seconds) 2013-07-29T07:05:36 *** MegaAlex|away has joined #rtems 2013-07-29T07:18:30 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T07:30:27 *** hiddenpearls has joined #rtems 2013-07-29T07:31:23 hi,the9ae33di 2013-07-29T07:32:17 sorry. hi the9a3eedi 2013-07-29T07:50:54 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T07:59:00 *** hiddenpearls has joined #rtems 2013-07-29T08:06:27 *** hiddenpearls has quit IRC (Ping timeout: 260 seconds) 2013-07-29T08:27:26 @tictoc this is a bug in _times() 2013-07-29T08:27:26 sebhub: Error: "tictoc" is not a valid command. 2013-07-29T08:27:38 tictoc: this is a bug in _times() 2013-07-29T08:29:53 hm, no the _times() seems to be ok 2013-07-29T08:30:05 Ok thanks. Is there any other way to get the information? After all rtems_cpu_usage_report() is logging it. I looked at the code but I am not yet familiar with most of the used functions and it was nothing I could easily extract at a glance 2013-07-29T08:30:24 this times() should work 2013-07-29T08:30:49 can you set a break point to times() and see why this value for tms_utime is zero? 2013-07-29T08:33:33 I haven't used the debugger yet and I am still writing code from a text editor, so right now this would be a bit difficult 2013-07-29T08:34:07 then this is a good time to start with the debugger ;-) 2013-07-29T08:36:20 Indeed 2013-07-29T08:36:27 *** keon has joined #rtems 2013-07-29T08:37:37 Btw. I also looked at the times test case from the rtems testsuite and added a little printf to see the values for end_tm.tms_utime and start_tm.tms_utime. Both values are zero at the end of the test. 2013-07-29T08:37:43 *** keon has quit IRC (Client Quit) 2013-07-29T08:38:03 which test case is this? 2013-07-29T08:38:37 rtems/testsuites/psxtests/psxtimes01 2013-07-29T08:39:43 The test only checks whether end_tm.tms_utime >= start_time_tm.tms_utime, so even if they are both zero no alarm is raised 2013-07-29T08:41:01 *** keon has joined #rtems 2013-07-29T08:41:29 The test uses rtems_test_spin_for_ticks(5) to pass time. I suspect this function does not suspend the running task? 2013-07-29T08:42:01 yes, this is a busy wait 2013-07-29T08:42:46 good, in this case they shouldn't be zero 2013-07-29T08:46:11 Are you using gdb from the shell or with some kind of GUI? 2013-07-29T08:46:21 it might be zero since not _Thread_Dispatch with heir != executing happened 2013-07-29T08:46:44 thus the cpu_time_used field is not up to date 2013-07-29T08:47:09 i use the Lauterbach Trace32 or the GDB command line 2013-07-29T08:47:41 it is possible to use eclipse with GDB for a GUI like debugging 2013-07-29T08:47:50 it was not something for me 2013-07-29T08:48:47 hi ,all! driver headerfiles drvmgr don't exit in rtems4.10.2,but i want to use it to add uart and i2c,how to solve this problem?thanks 2013-07-29T08:49:23 what is drvmgr? 2013-07-29T08:50:11 it is for driver in rtems 2013-07-29T08:50:46 but rtems4.10.2 has no such file 2013-07-29T08:51:03 do you use a Leon target from AG? 2013-07-29T08:53:08 By "no _Thread_Dispatch with heir != executing" you mean it might be zero because no thread except the initialization thread was spawned? Well in my case I spawned a thread and busy waited by incrementing a counter and using some text output, the returned value was still zero. 2013-07-29T08:54:49 Even if everything happens in the initialization thread I would still expect the utime value to represent the initialization thread in this case. 2013-07-29T08:56:30 i load leon from Gaisler 2013-07-29T08:57:50 regarding the drvmgr you should ask AG for support 2013-07-29T08:58:00 and ask them why the didn't contribute this stuff 2013-07-29T08:58:34 tictoc: I will send a patch in a couple of minutes to the rtems-devel list 2013-07-29T08:58:50 thanks 2013-07-29T08:59:19 i want to add this in my program #include 2013-07-29T09:00:18 Ah, so you could reproduce the error / fixed it? I also found a bug / unexpected behaviour in the POSIX timer implementation, but I did not yet have the time to commit it. 2013-07-29T09:00:52 so i want to ask AG for support? and then i want to patch rtems4.10.2 2013-07-29T09:01:29 yes, ask AG, this drvmgr is not part of the official rtems 2013-07-29T09:01:55 tictoc: yes, i guess i found the bug in _times 2013-07-29T09:03:56 thanks,how can i connect to AG? 2013-07-29T09:04:21 i don't know 2013-07-29T09:04:48 sebhub: Thanks, much appreciated! 2013-07-29T09:05:37 sebhub:thanks,you give me a way to solve the problem 2013-07-29T09:23:30 I'm thinking,except using drvmgr,anyother ways to solve driver problem on rtems4.10.2? 2013-07-29T09:24:14 *** kiwichris has joined #rtems 2013-07-29T09:24:36 if the drvmgr has the stuff you need, then i would contact AG 2013-07-29T09:30:03 is there a guide somewhere on how to use qemu and gdb for the pc386 target, or was that only for the sparc? 2013-07-29T09:30:07 can't find it right now 2013-07-29T09:30:17 I really need drvmgr,I know in rtems4.10.1.2.11-s has drvmgr,but i don't kwon if i can transplant it to rtems4.10.2? 2013-07-29T09:31:02 http://git.rtems.org/rtems-testing/tree/sim-scripts 2013-07-29T09:31:25 this contains some example on how to invoke the various simulators 2013-07-29T09:31:25 why rtems4.10.1.2.11-s has drvmgr,but rtems4.10.2 hasn't? 2013-07-29T09:31:55 keon: what is rtems4.10.1.2.11-s ?? 2013-07-29T09:32:42 keon: you should ask AG since this drvmgr is their stuff 2013-07-29T09:32:46 it is a lower version rtems 2013-07-29T09:33:01 i cannot help you with this 2013-07-29T09:33:03 keon: no it is not a standard version of rtems 2013-07-29T09:33:17 but i don't know where i can ask AG? 2013-07-29T09:33:52 keon: this is probably a proprietary fork and you have to ask whoever you got the fork from 2013-07-29T09:33:58 http://www.gaisler.com/ 2013-07-29T09:34:20 my rtems version is not complete? 2013-07-29T09:34:45 where did you get if from? 2013-07-29T09:34:54 keon: as has been stated several times, drivemgr is not part of the official rtems 2013-07-29T09:36:14 keon: when someone forks rtems in a proprietary version and does not commit it back this happens 2013-07-29T09:36:30 my teammate give me the rtems package 2013-07-29T09:37:23 i don't know where he get it? 2013-07-29T09:37:32 well we do neither 2013-07-29T09:38:48 so ,i want to ask clear ,and then i will contact to AG 2013-07-29T09:38:50 well 2013-07-29T09:39:11 keon: if you want to write a driver you don't need drvmgr for it 2013-07-29T09:39:39 of for what do you want to use it? 2013-07-29T09:40:49 honestly, i actually don't know how to write a driver? 2013-07-29T09:41:07 i have'n do it before 2013-07-29T09:41:15 *** freenix has quit IRC (Remote host closed the connection) 2013-07-29T09:41:56 but if i can't solve this problem by other ways,i will follow your advice to write a driver by my self 2013-07-29T09:42:30 I want to add uart and i2c 2013-07-29T09:42:58 there are already several uart and i2c drivers in rtems 2013-07-29T09:44:31 maybe you can just use (or adapt) one of those 2013-07-29T09:52:15 thanks,you are so nice 2013-07-29T09:56:00 if i get drvmgr,how can i apply it to my application program? 2013-07-29T09:59:14 keon: we don't know about drvmgr … 2013-07-29T10:00:11 *** DrJoel has joined #rtems 2013-07-29T10:00:11 *** DrJoel has joined #rtems 2013-07-29T10:00:11 *** ChanServ sets mode: +o DrJoel 2013-07-29T10:00:20 sebhub... awake? 2013-07-29T10:00:42 hi joel 2013-07-29T10:00:49 drjoel: asleep at 5pm ??? 2013-07-29T10:01:00 hi joel 2013-07-29T10:01:19 thanks once more, i think i have direction to these problems 2013-07-29T10:01:51 hey.. I have been asked to help a huntsville friend setting up a lab to give recommendations on some interesting and inexpensive boards to play with different architectures and get some general IO, maybe analogs, etc 2013-07-29T10:02:15 For PowerPC I thought of the mpc8313-rdb or mpc5200 eval boards. Any other suiggestions 2013-07-29T10:02:16 beaglebone 2013-07-29T10:03:15 Already on the list ... Pi w/Geert Board, BeagleBone, a Zynq, and an embedded PC and multi IO card I have here. Want to add a PowerPC 2013-07-29T10:03:22 the lpc17xx evaluation board from embedded artists 2013-07-29T10:03:42 That's ARM... what about a PowerPC? 2013-07-29T10:03:50 http://www.embeddedartists.com/products/kits/lpc1788_kit.php 2013-07-29T10:03:59 yes, the mpc8313 is good 2013-07-29T10:04:09 or a P1020RDB 2013-07-29T10:04:15 this has two processors 2013-07-29T10:04:27 ahh.. why I asked.. That would be a good option and I forgot about it. :) 2013-07-29T10:05:00 Play at which level ? 2013-07-29T10:05:11 Does he need debug access ? 2013-07-29T10:05:16 *** S_Somani has joined #rtems 2013-07-29T10:05:22 *** keon has quit IRC (Quit: 离开) 2013-07-29T10:06:11 Yes kiwichris.. I think the ARM kits, we included the JTAG adapter 2013-07-29T10:06:29 for the embedded PC, there is serial port and gdb plus netboot. Not ideal but workable. 2013-07-29T10:06:37 For the PowerPC, I haven't thought much 2013-07-29T10:06:43 And the Embedded Artists is a new idea 2013-07-29T10:09:07 DrJoel: Hi, did you see the patch? 2013-07-29T10:09:22 drjoel: worked with this one recently http://octopart.com/mpc8309-kit-freescale+semiconductor-18797737 2013-07-29T10:09:43 PC with netboot and a serial is becoming harder and harder because 1550 serial ports are not so common 2013-07-29T10:10:16 drjoel: using these JTAG boxes http://www.abatron.ch/products/bdi-family.html 2013-07-29T10:10:54 kiwichris: I was looking at this which is an updated version of what I used on the robotics project a few years ago: http://www.winsystems.com/EBC-C384-D.cfm 2013-07-29T10:10:58 drjoel: they are not cheap but they have ethernet and run gdb server protocol internally 2013-07-29T10:11:04 It has 4 real serial ports 2013-07-29T10:11:48 peerst: We have one here. They are a nice solution. I will have to check his lab budget and see what fits. I think he may be in the hardware buying mode with cheap debug solutions and add that. 2013-07-29T10:12:13 I am using a Flyswatter2 for ARM debugging and it works well. 2013-07-29T10:15:05 For all your boards? Pi, Zynq, ? 2013-07-29T10:17:03 tictoc: this times() fix needs a bit more time 2013-07-29T10:17:17 i will finish it tomorrow 2013-07-29T10:18:01 the _Timestamp_Divide() name is quite misleading 2013-07-29T10:18:24 I will rename it to _Timestamp_Percent() 2013-07-29T10:18:36 or faction ? 2013-07-29T10:18:39 Ok. 2013-07-29T10:18:46 fraction 2013-07-29T10:19:22 *** monstr__ has quit IRC (Remote host closed the connection) 2013-07-29T10:20:55 I have to finish something else so I am not doing anything in that direction atm, but out of curiosity: Is there any other function to get the tick count / CPU time of a thread except times()? 2013-07-29T10:21:20 not as far as I know 2013-07-29T10:21:34 Not off the top of my head. But it would be acceptable to add a Classic API rtem_task_xxx() to obtain that information. 2013-07-29T10:22:07 Similarly, a method to obtain stack usage for a particular thread would be useful. Now all you can get is reports. 2013-07-29T10:23:02 hm 2013-07-29T10:24:05 That would mean the stack checking code is always on or would you return an error if not ? 2013-07-29T10:24:23 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-07-29T10:24:23 Historically, these grew up as debug aids and evolved into better reporting aids. Having a programmatic interface helps. 2013-07-29T10:24:46 We would have to just define the behavior. I think we would have to say unavailable. 2013-07-29T10:30:17 bbl.. have a lunch appointment ... sigh.. another Monday 2013-07-29T10:30:35 *** DrJoel has quit IRC (Quit: It's a dud! It's a dud! It's a du...) 2013-07-29T10:30:52 Since there are so many people here right now: There is a bug in the POSIX timer. You can pass an initial value and an interval when you set the timer. The timer first starts counting down from the initial value. At zero it emits a signal and then resets itself to the value defined in interval. According to the POSIX description if you do not set an interval, the timer only counts down from... 2013-07-29T10:30:53 ...the initial value and then stops at zero. In RTEMS the timer resets to an arbitrary (?) value instead and starts counting down again. 2013-07-29T10:31:45 I compiled the same code on Unix, there the timer stops at zero. 2013-07-29T10:32:43 I have some example code, but didn't find the time to file a bug report on the weekend 2013-07-29T10:39:38 *** hiddenpearls has joined #rtems 2013-07-29T10:41:22 *** hiddenpearls has quit IRC (Client Quit) 2013-07-29T10:46:06 *** hiddenpearls has joined #rtems 2013-07-29T10:46:38 *** S_Somani has quit IRC (Ping timeout: 240 seconds) 2013-07-29T10:50:45 *** arvind_khadri has quit IRC (Remote host closed the connection) 2013-07-29T10:53:41 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T10:55:09 tictoc: i sent a patch to rtems-devel 2013-07-29T10:55:26 have to leave now, cu 2013-07-29T10:55:28 *** sebhub has quit IRC (Remote host closed the connection) 2013-07-29T10:55:45 *** S_Somani has joined #rtems 2013-07-29T11:20:20 *** kiwichris has joined #rtems 2013-07-29T11:30:45 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-07-29T11:33:26 *** hiddenpearls has joined #rtems 2013-07-29T11:35:09 *** antgreen has quit IRC (Read error: Operation timed out) 2013-07-29T12:31:12 *** antgreen has joined #rtems 2013-07-29T13:05:51 *** hiddenpearls1 has joined #rtems 2013-07-29T13:07:00 *** hiddenpearls has quit IRC (Ping timeout: 260 seconds) 2013-07-29T13:55:03 *** S_Somani has left #rtems 2013-07-29T14:16:40 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-07-29T15:06:40 sure 2013-07-29T15:06:55 oops - wrong window 2013-07-29T16:18:31 *** hiddenpearls has joined #rtems 2013-07-29T16:35:33 *** antgreen has quit IRC (Ping timeout: 245 seconds) 2013-07-29T16:58:59 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T17:26:09 *** hiddenpearls has joined #rtems 2013-07-29T18:19:47 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T18:24:30 *** hiddenpearls has joined #rtems 2013-07-29T18:30:21 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-29T18:48:26 *** antgreen has joined #rtems 2013-07-29T20:18:14 *** the9a3eedi has quit IRC (Read error: Connection reset by peer) 2013-07-29T20:18:41 *** the9a3eedi has joined #rtems 2013-07-29T20:52:14 *** kiwichris has quit IRC (Ping timeout: 240 seconds) 2013-07-29T21:05:22 *** dhananjay has quit IRC (Quit: Real world kicks in!) 2013-07-29T21:23:43 *** peerst has quit IRC (Ping timeout: 276 seconds) 2013-07-29T21:24:39 *** peerst has joined #rtems 2013-07-29T21:25:24 *** kiwichris has joined #rtems 2013-07-29T21:55:50 *** peerst has quit IRC (Ping timeout: 245 seconds) 2013-07-29T21:58:48 *** peerst has joined #rtems 2013-07-29T22:21:28 *** beng-nl has quit IRC (Read error: Connection reset by peer) 2013-07-29T22:27:22 *** beng-nl has joined #rtems 2013-07-29T22:46:55 *** beng-nl has quit IRC (Read error: Connection reset by peer) 2013-07-29T22:52:48 *** beng-nl has joined #rtems 2013-07-30T00:07:19 *** hiddenpearls has joined #rtems 2013-07-30T00:15:06 *** monstr has joined #rtems 2013-07-30T00:35:32 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-07-30T02:21:08 *** sebhub has joined #rtems 2013-07-30T02:21:43 good morning 2013-07-30T02:50:57 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T03:13:33 *** hiddenpearls has joined #rtems 2013-07-30T03:46:06 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T03:50:25 *** arvind_khadri has joined #rtems 2013-07-30T03:52:25 *** sebhub has quit IRC (Ping timeout: 276 seconds) 2013-07-30T03:53:41 *** sebhub has joined #rtems 2013-07-30T03:58:08 *** phipse has joined #rtems 2013-07-30T03:58:12 hi 2013-07-30T04:00:33 *** the9a3eedi has quit IRC (Ping timeout: 245 seconds) 2013-07-30T04:03:41 *** tictoc has joined #rtems 2013-07-30T04:33:45 *** monstr has quit IRC (Ping timeout: 264 seconds) 2013-07-30T04:35:12 *** monstr has joined #rtems 2013-07-30T04:42:52 *** monstr has quit IRC (Remote host closed the connection) 2013-07-30T05:22:02 *** kiwichris has joined #rtems 2013-07-30T05:30:20 *** hiddenpearls has joined #rtems 2013-07-30T05:50:16 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-07-30T06:02:43 *** freenix has joined #rtems 2013-07-30T06:11:53 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T06:29:10 *** hiddenpearls has joined #rtems 2013-07-30T06:50:15 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T06:54:21 sebhub, do the new posix keys map to objects ? 2013-07-30T06:55:05 they key object yes, but not the (key, value) items 2013-07-30T06:56:26 Ok. I did not look at the implementation in the patch. Is the issue in the key values ? 2013-07-30T06:57:07 yes 2013-07-30T06:57:12 OK. 2013-07-30T06:57:31 By the way our test for the file system is now wrong ... 2013-07-30T06:57:38 http://austingroupbugs.net/view.php?id=489 2013-07-30T06:57:52 and http://austingroupbugs.net/view.php?id=485 2013-07-30T06:59:03 http://lists.freebsd.org/pipermail/freebsd-standards/2013-July/002630.html 2013-07-30T07:00:42 i would implement the freebsd/austin group behaviour 2013-07-30T07:01:29 Yes I agree 2013-07-30T07:01:46 The test is wrong as truncate should change the times 2013-07-30T07:02:10 ok, then we should fix the test 2013-07-30T07:02:13 *** hiddenpearls has joined #rtems 2013-07-30T07:02:46 I will when I take a look at the RFS. I want to review the times in relation to this. 2013-07-30T07:24:05 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T07:34:57 *** hiddenpearls has joined #rtems 2013-07-30T07:41:10 *** hiddenpearls1 has joined #rtems 2013-07-30T07:42:11 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-07-30T07:43:46 *** hiddenpearls has joined #rtems 2013-07-30T07:46:06 *** hiddenpearls1 has quit IRC (Ping timeout: 264 seconds) 2013-07-30T08:00:04 *** antgreen has quit IRC (Ping timeout: 276 seconds) 2013-07-30T08:06:47 I just pulled the latest changes from the git repo and tried to rebuild rtems for the pc386, now the build process terminates with this error:/bin2boot -v spfreechain01.ralf 2013-07-30T08:07:08 any suggestions? Did I do something wrong, do I have to update anything else? 2013-07-30T08:08:18 erm the error is "/bin2boot: Command not found", when executing "/bin2boot -v spfreechain01.ralf ..." 2013-07-30T08:08:35 hm, maybe a problem with one of the latest tests 2013-07-30T08:08:39 can you run make again 2013-07-30T08:08:57 i had to call make twice 2013-07-30T08:09:04 already tried 2013-07-30T08:10:16 i had this error also today 2013-07-30T08:10:41 takes forever and then ends at the same spot. I just recalled I turned on the --enable-tests, I will try it with samples only 2013-07-30T08:10:51 other than that I don't think I changed anything 2013-07-30T08:11:04 to the build script I mean 2013-07-30T08:11:16 this error is new and the test case is also new 2013-07-30T08:11:40 then I will just remove the testcase : p 2013-07-30T08:12:11 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T08:12:13 btw. can I build the testcases without rebuilding rtems every time? 2013-07-30T08:13:16 you can change into the testsuites dir and run make from here 2013-07-30T08:16:39 oh... 2013-07-30T08:18:16 I wasn't aware you could simply run make on an automake file... 2013-07-30T08:18:44 no, in the build tree, there is a testsuites directory 2013-07-30T08:22:04 I know, but it only has an Makefile.am, right? So I have to generate the corresponding Makefile for the tests from this first, correcT? 2013-07-30T08:22:55 the testcases are part of the rtems build tree, you cannot build them separate 2013-07-30T08:23:12 if you have a build tree, then you can go into a subdirectory for partial builds 2013-07-30T08:23:31 ahh, I see 2013-07-30T08:23:51 Good to know, thanks : ) 2013-07-30T08:49:50 *** antgreen has joined #rtems 2013-07-30T09:02:26 *** antgreen has quit IRC (Ping timeout: 256 seconds) 2013-07-30T09:18:10 *** antgreen has joined #rtems 2013-07-30T09:21:24 sebhub: Sorry you were right, running make twice works. 2013-07-30T09:21:58 I think the last time I previously removed my changes to RTEMS and tried to rebuild from scratch 2013-07-30T09:22:19 something must wrong with the freechain test 2013-07-30T09:25:43 *** freenix has quit IRC (Remote host closed the connection) 2013-07-30T09:26:13 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-07-30T09:33:30 *** antgreen has quit IRC (Ping timeout: 264 seconds) 2013-07-30T09:51:25 *** phipse has joined #rtems 2013-07-30T10:00:36 *** kiwichris has joined #rtems 2013-07-30T10:10:05 *** S_Somani has joined #rtems 2013-07-30T10:14:42 When a running RTEMS tasks uses timeslicing and gets preempted, is the timeslice count reset when the task gets again? 2013-07-30T10:14:42 *** arvind_khadri has quit IRC (Read error: Connection reset by peer) 2013-07-30T10:14:55 gets executed* 2013-07-30T10:15:07 i think yes, see _Thread_Dispatch() 2013-07-30T10:17:19 thanks, I will 2013-07-30T10:19:51 *** S_Somani has left #rtems 2013-07-30T10:29:24 sebhub: do you know if a pull request on github and an email explaining the changes is sufficient for the midterm evaluation? 2013-07-30T10:30:07 this depends on your mentor 2013-07-30T10:30:57 ok, thanks 2013-07-30T10:37:21 *** hiddenpearls has joined #rtems 2013-07-30T10:40:53 *** phipse has left #rtems 2013-07-30T10:42:58 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T10:47:18 *** hiddenpearls has joined #rtems 2013-07-30T10:51:48 *** hiddenpearls has quit IRC (Ping timeout: 256 seconds) 2013-07-30T10:52:14 *** antgreen has joined #rtems 2013-07-30T10:54:08 *** sebhub has quit IRC (Remote host closed the connection) 2013-07-30T11:03:47 *** keon has joined #rtems 2013-07-30T11:04:58 *** keon has quit IRC (Client Quit) 2013-07-30T11:21:34 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-07-30T11:23:48 *** kiwichris has quit IRC (Quit: Leaving) 2013-07-30T11:28:44 *** kiwichris has joined #rtems 2013-07-30T11:31:21 *** hiddenpearls has joined #rtems 2013-07-30T11:50:54 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-30T12:29:54 *** antgreen has quit IRC (Ping timeout: 264 seconds) 2013-07-30T12:42:51 *** antgreen has joined #rtems 2013-07-30T13:33:55 *** hiddenpearls has joined #rtems 2013-07-30T13:40:52 *** hiddenpearls1 has joined #rtems 2013-07-30T13:42:44 *** hiddenpearls2 has joined #rtems 2013-07-30T13:44:31 *** hiddenpearls has quit IRC (Ping timeout: 268 seconds) 2013-07-30T13:45:56 *** hiddenpearls has joined #rtems 2013-07-30T13:46:52 *** hiddenpearls2 has quit IRC (Ping timeout: 246 seconds) 2013-07-30T13:47:16 *** hiddenpearls1 has quit IRC (Ping timeout: 264 seconds) 2013-07-30T13:48:45 *** hiddenpearls has quit IRC (Client Quit) 2013-07-30T14:23:10 *** antgreen has quit IRC (Ping timeout: 256 seconds) 2013-07-30T15:49:14 *** antgreen has joined #rtems 2013-07-30T19:42:51 *** kiwichris has quit IRC (Ping timeout: 256 seconds) 2013-07-30T20:07:00 *** freenix has joined #rtems 2013-07-30T20:12:13 *** antgreen has quit IRC (Ping timeout: 246 seconds) 2013-07-30T20:30:10 *** kiwichris has joined #rtems 2013-07-30T21:02:34 *** antgreen has joined #rtems 2013-07-30T21:41:12 *** antgreen has quit IRC (Ping timeout: 256 seconds) 2013-07-30T23:56:48 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-07-31T00:30:00 *** freenix has quit IRC (Ping timeout: 245 seconds) 2013-07-31T01:25:21 *** arvind_khadri has joined #rtems 2013-07-31T01:42:52 *** sebhub has joined #rtems 2013-07-31T01:47:25 good morning 2013-07-31T02:49:45 *** monstr has joined #rtems 2013-07-31T03:15:38 *** tictoc has joined #rtems 2013-07-31T05:52:52 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-07-31T05:54:57 *** tictoc has joined #rtems 2013-07-31T06:00:13 *** arvind_khadri has quit IRC (Read error: Connection reset by peer) 2013-07-31T06:20:27 *** arvind_khadri has joined #rtems 2013-07-31T06:21:00 *** antgreen has joined #rtems 2013-07-31T07:37:49 *** freenix has joined #rtems 2013-07-31T08:09:20 I don't even want to ask, but is pthread_cancel() supposed to work? 2013-07-31T08:10:38 i would not use it, there is an open bug 2013-07-31T08:11:04 https://www.rtems.org/bugzilla/show_bug.cgi?id=2035 2013-07-31T08:11:59 http://www.rtems.org/pipermail/rtems-devel/2013-July/003509.html 2013-07-31T08:12:50 hmm are there any other parts of the POSIX API one should generally not use? 2013-07-31T08:13:12 btw. the times() patch appears to be working, thanks again 2013-07-31T08:13:37 the pthread_cancel() is very problematic in general 2013-07-31T08:14:17 its the only pthread routine with known bugs to me 2013-07-31T08:14:27 ok 2013-07-31T08:14:47 why do you want to cancel threads asynchronously? 2013-07-31T08:16:06 I wrote some test functions for my self that run in an infinite loop. Just to get used to the API and scheduling. Then I thought I could just cancel them after a given time using pthread_cancel 2013-07-31T08:33:18 *** freenix has quit IRC (Quit: Leaving) 2013-07-31T08:45:28 *** sebhub has quit IRC (Ping timeout: 264 seconds) 2013-07-31T08:47:36 *** sebhub has joined #rtems 2013-07-31T09:21:43 *** kiwichris has joined #rtems 2013-07-31T09:22:16 *** kiwichris has quit IRC (Client Quit) 2013-07-31T09:37:07 *** DrJoel has joined #rtems 2013-07-31T09:37:08 *** DrJoel has joined #rtems 2013-07-31T09:37:08 *** ChanServ sets mode: +o DrJoel 2013-07-31T09:37:24 *** DrJoel has quit IRC (Client Quit) 2013-07-31T10:01:11 *** arvind_khadri has quit IRC (Read error: Connection reset by peer) 2013-07-31T10:04:22 *** kiwichris has joined #rtems 2013-07-31T10:55:01 *** vipulnayyar has joined #rtems 2013-07-31T10:56:34 *** S_Somani has joined #rtems 2013-07-31T11:10:48 *** sebhub has quit IRC (Remote host closed the connection) 2013-07-31T11:26:49 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-07-31T11:27:14 *** vipulnayyar has quit IRC (Quit: Leaving) 2013-07-31T11:56:52 *** monstr has quit IRC (Ping timeout: 256 seconds) 2013-07-31T12:14:18 *** S_Somani has left #rtems 2013-07-31T13:51:09 *** antgreen has quit IRC (Ping timeout: 264 seconds) 2013-07-31T14:18:54 *** phipse has joined #rtems 2013-07-31T15:22:53 \leave 2013-07-31T15:22:56 *** phipse has left #rtems 2013-07-31T15:36:10 *** antgreen has joined #rtems 2013-07-31T15:46:13 *** hiddenpearls has joined #rtems 2013-07-31T16:50:04 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-31T17:42:56 *** hiddenpearls has joined #rtems 2013-07-31T17:49:06 *** hiddenpearls has quit IRC (Ping timeout: 264 seconds) 2013-07-31T17:55:06 *** hiddenpearls has joined #rtems 2013-07-31T18:01:53 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-07-31T19:03:45 *** kiwichris has quit IRC (Ping timeout: 264 seconds) 2013-07-31T20:14:25 *** freenix has joined #rtems 2013-07-31T22:14:00 *** kiwichris has joined #rtems 2013-07-31T23:31:43 *** monstr has joined #rtems 2013-08-01T00:10:45 *** the9a3eedi has joined #rtems 2013-08-01T00:25:55 *** arvind_khadri has joined #rtems 2013-08-01T01:05:06 *** arvind_k has joined #rtems 2013-08-01T01:07:02 *** arvind_khadri has quit IRC (Ping timeout: 240 seconds) 2013-08-01T01:43:24 *** sebhub has joined #rtems 2013-08-01T01:44:47 good morning 2013-08-01T02:00:47 *** hiddenpearls has joined #rtems 2013-08-01T02:24:14 *** MegaAlex|away has quit IRC (Ping timeout: 240 seconds) 2013-08-01T02:25:20 *** MegaAlex|away has joined #rtems 2013-08-01T02:37:37 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-01T03:15:19 *** tictoc has joined #rtems 2013-08-01T03:20:04 *** hiddenpearls has joined #rtems 2013-08-01T03:21:53 *** arvind_k has quit IRC (Ping timeout: 240 seconds) 2013-08-01T03:30:15 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-01T03:40:02 *** arvind_khadri has joined #rtems 2013-08-01T04:07:50 *** sebhub has quit IRC (Read error: Operation timed out) 2013-08-01T04:08:27 *** sebhub has joined #rtems 2013-08-01T04:29:24 *** hiddenpearls has joined #rtems 2013-08-01T04:55:04 *** the9a3eedi has quit IRC (Quit: Leaving) 2013-08-01T06:24:01 *** sebhub has quit IRC (Ping timeout: 276 seconds) 2013-08-01T06:39:03 freenix, hi 2013-08-01T06:39:12 hi, kiwichris 2013-08-01T06:39:32 Great work on getting breakpoints to work under gdb for RAP files 2013-08-01T06:39:50 more work should be done to improve it. 2013-08-01T06:40:15 Thanks. 2013-08-01T06:40:16 yeah sure but having it work means that work is worth the effort 2013-08-01T06:40:42 I introduce a int size slot to the detail part. 2013-08-01T06:40:49 Please create a patch to add the sizes 2013-08-01T06:41:06 Yeah, I have submit to my github. 2013-08-01T06:41:24 On the solib path, you can add a -R --rpath option to rtems-ld and let the user add paths. 2013-08-01T06:41:43 Check the gnu ld manual for the meaning 2013-08-01T06:41:47 ok.I'll try it. 2013-08-01T06:41:54 http://sourceware.org/binutils/docs-2.23.1/ld/Options.html#Options 2013-08-01T06:42:02 Thank you. 2013-08-01T06:42:47 Looking at the code you sent me I see the user of pointers, for example section_detail has next and prev 2013-08-01T06:43:09 yeah. I am not sure prev is needed or not. 2013-08-01T06:43:17 Does this mean a section in a RAP file has a list of sections and they are linked ? 2013-08-01T06:43:22 no. 2013-08-01T06:43:31 ? 2013-08-01T06:43:44 just like array in the rap file. 2013-08-01T06:43:56 but I use linked list to manage them in the rtl 2013-08-01T06:43:57 Why the linked list ? 2013-08-01T06:44:13 Ah I mean in RTL 2013-08-01T06:44:24 they are a list based in the object struct 2013-08-01T06:44:26 ? 2013-08-01T06:44:29 Yeah, In RTL, I use list to link them. 2013-08-01T06:45:01 Why not have the obj point to the same table as in the RAP file ? 2013-08-01T06:45:31 wait. I check the code. 2013-08-01T06:46:01 the details part in a rap file will be read into ram 2013-08-01T06:46:13 Yes 2013-08-01T06:46:28 and the section detail structure is allocated with the details part, like this 2013-08-01T06:46:42 obj_detail_size + rap->strtable_size 2013-08-01T06:47:45 and obj_detail_size is obj_detail_size += (obj->sec_num[i] * sizeof (section_detail)) 2013-08-01T06:48:08 My point being if the entries are next to each other in memory you do not need a list, you know the next pointer using 'ptr + 1' 2013-08-01T06:48:17 This saves memory on the target 2013-08-01T06:48:51 yeah. 2013-08-01T06:49:37 because a rap file may contains several object files. each object files may contains several sections. So I use list to manage them. 2013-08-01T06:49:51 It will be interesting to see what happens with gdb when you step into a library function that has been linked in 2013-08-01T06:50:15 Is the list anchored in the obj struct ? 2013-08-01T06:50:24 yeah. 2013-08-01T06:50:48 you can try. the gdb code is also on my github 2013-08-01T06:51:02 *** MegaAlex|away has quit IRC (Ping timeout: 240 seconds) 2013-08-01T06:51:03 https://github.com/MrVan/gdb 2013-08-01T06:51:52 Then a table and you know the size you can 'for (s=0; s < obj->section_count; s++) { x = obj->sections[i] }' 2013-08-01T06:52:23 yeah. 2013-08-01T06:53:20 I am on the move in a couple of hours until next week, than again most of next week then home and I will then. If I can I will try before then if I have time 2013-08-01T06:54:01 *** MegaAlex|away has joined #rtems 2013-08-01T06:54:07 ok. about the section list part, I may try other methods to see whether I can shrink the memory usage. 2013-08-01T06:54:08 When you have all the records available a table with size is simpler and uses less memory than a linked list. 2013-08-01T06:54:14 Great. 2013-08-01T06:54:29 This can wait until while you work on other parts. It is not a priority 2013-08-01T06:54:46 other parts? 2013-08-01T06:54:47 because it is working. My only concern is the gdb patch will be reading this table 2013-08-01T06:55:08 Of the work, ie rpath etc 2013-08-01T06:55:13 ok. 2013-08-01T06:55:27 I assume gdb is also reading this list ? 2013-08-01T06:55:35 I'll add the rpath to the rtl host. 2013-08-01T06:55:37 yeah. 2013-08-01T06:55:42 gdb read the list 2013-08-01T06:56:02 gdb will iterate the list to get the section information 2013-08-01T06:56:32 If gdb can do a single read of 'target_mem_read (obj->sections, obj->section_count * sizeof (section_detail))' it will be much faster 2013-08-01T06:57:02 and you iterate in gdb only one read to the target happens and with remote targets it will be faster 2013-08-01T06:57:19 ok. Got you meaning. 2013-08-01T06:57:24 excellent 2013-08-01T06:57:37 Some remote targets may be on a slow serial link 2013-08-01T06:58:16 this is really good work and I feel will change the may everyone will use RTEMS 2013-08-01T06:58:23 mat -> way 2013-08-01T06:58:27 I try to see whether list can be replace with array. 2013-08-01T06:58:44 haha:) 2013-08-01T06:58:57 Good idea. Look for ways to combine as much data gdb needs into a single block of memory 2013-08-01T06:59:06 hehe 2013-08-01T06:59:17 I have another thing. 2013-08-01T06:59:20 sure 2013-08-01T06:59:49 About the midterm report, should i do a midterm report or others except the form on goole melane? 2013-08-01T07:00:14 about the midterm evaluation. 2013-08-01T07:00:56 What is the form in melange ? 2013-08-01T07:01:32 it is a midterm evaluation questionnaire 2013-08-01T07:01:42 I feel an email to the development list detailing the work with gdb and a sample debug session would be nice. 2013-08-01T07:02:06 I would answer the melange questions with what they ask. 2013-08-01T07:02:31 ok. I'll post the email about my work done in the past days to the devel list. 2013-08-01T07:03:12 The pending breakpoint and then it being hit is a nice example 2013-08-01T07:03:56 There are a few people already playing with this code and this will be of interest 2013-08-01T07:04:41 Hope my current implementation is helpful 2013-08-01T07:05:10 The fact it is happening and there is a solution means they know in time a full solution will be here 2013-08-01T07:05:36 The code will be merged into RTEMS after 4.11 is released 2013-08-01T07:06:13 The gdb part? 2013-08-01T07:06:22 All parts. 2013-08-01T07:06:30 ok. 2013-08-01T07:06:33 The gdb will be submitted to the gdb project 2013-08-01T07:06:48 We will need FSF paper work sorted out 2013-08-01T07:07:53 ok. 2013-08-01T07:08:48 I think I should change my code format about the gdb part. 2013-08-01T07:09:12 To match what gdb needs ? 2013-08-01T07:09:20 yeah. 2013-08-01T07:09:36 Good idea. Best to do it now and keep it in that format. 2013-08-01T07:09:57 I did not change my vim configuation. 2013-08-01T07:09:59 yeah. 2013-08-01T07:10:01 Reformating can always introduce a bug 2013-08-01T07:10:14 I'll be carefull to do that. 2013-08-01T07:10:20 can test it. 2013-08-01T07:10:24 and test it. 2013-08-01T07:10:38 Sure. What I mean is doing it at the end once finished 2013-08-01T07:11:21 I have something to handle now. Sorry. I have to leave. 2013-08-01T07:11:27 cya 2013-08-01T07:12:00 cya. 2013-08-01T07:12:08 *** freenix has quit IRC (Quit: Leaving) 2013-08-01T07:25:22 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-01T07:31:58 *** hiddenpearls has joined #rtems 2013-08-01T07:55:49 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-01T08:51:17 *** weiY has joined #rtems 2013-08-01T09:12:02 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-01T09:40:47 *** hiddenpearls has joined #rtems 2013-08-01T09:43:45 *** hiddenpearls has quit IRC (Client Quit) 2013-08-01T09:44:00 *** weiY has quit IRC (Quit: Linkinus - http://linkinus.com) 2013-08-01T09:48:06 *** hiddenpearls has joined #rtems 2013-08-01T09:50:15 *** hiddenpearls has quit IRC (Client Quit) 2013-08-01T10:10:19 *** kiwichris has joined #rtems 2013-08-01T10:22:01 *** arvind_khadri has quit IRC (Remote host closed the connection) 2013-08-01T11:00:46 *** arvind_khadri has joined #rtems 2013-08-01T11:40:56 *** hiddenpearls has joined #rtems 2013-08-01T11:42:57 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-08-01T11:44:21 *** hiddenpearls has quit IRC (Client Quit) 2013-08-01T11:51:33 *** S_Somani has joined #rtems 2013-08-01T12:24:48 *** hiddenpearls has joined #rtems 2013-08-01T13:29:52 *** monstr has quit IRC (Ping timeout: 246 seconds) 2013-08-01T13:35:34 *** S_Somani has left #rtems 2013-08-01T13:53:58 *** hiddenpearls1 has joined #rtems 2013-08-01T13:56:20 *** hiddenpearls has quit IRC (Ping timeout: 256 seconds) 2013-08-01T13:59:11 *** hiddenpearls has joined #rtems 2013-08-01T13:59:11 *** hiddenpearls1 has quit IRC (Read error: Connection reset by peer) 2013-08-01T14:02:33 *** hiddenpearls1 has joined #rtems 2013-08-01T14:05:09 *** hiddenpearls has quit IRC (Ping timeout: 248 seconds) 2013-08-01T15:18:42 *** hiddenpearls1 has quit IRC (Ping timeout: 268 seconds) 2013-08-01T15:28:06 *** hiddenpearls has joined #rtems 2013-08-01T15:29:45 *** hiddenpearls1 has joined #rtems 2013-08-01T15:32:52 *** hiddenpearls has quit IRC (Ping timeout: 264 seconds) 2013-08-01T16:06:54 *** hiddenpearls has joined #rtems 2013-08-01T16:06:55 *** hiddenpearls1 has quit IRC (Read error: Connection reset by peer) 2013-08-01T16:07:24 *** hiddenpearls has quit IRC (Client Quit) 2013-08-01T16:31:21 *** kiwichris has quit IRC (Ping timeout: 264 seconds) 2013-08-01T17:28:35 *** hiddenpearls has joined #rtems 2013-08-01T17:31:39 *** hiddenpearls has quit IRC (Client Quit) 2013-08-01T18:32:05 *** arvind_khadri has quit IRC (Ping timeout: 245 seconds) 2013-08-01T19:01:16 *** kiwichris has joined #rtems 2013-08-01T22:12:04 *** S_Somani has joined #rtems 2013-08-02T00:34:32 *** monstr has joined #rtems 2013-08-02T00:49:26 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-02T00:54:39 *** arvind_khadri has joined #rtems 2013-08-02T01:24:31 *** sebhub has joined #rtems 2013-08-02T01:24:47 good morning 2013-08-02T01:46:47 *** arvind_khadri has quit IRC (Read error: Connection reset by peer) 2013-08-02T01:47:37 *** arvind_khadri has joined #rtems 2013-08-02T01:48:36 *** arvind_khadri has joined #rtems 2013-08-02T02:10:43 *** tictoc has joined #rtems 2013-08-02T02:13:04 *** freenix has joined #rtems 2013-08-02T02:24:57 *** arvind_khadri has quit IRC (Read error: Connection reset by peer) 2013-08-02T02:26:06 *** arvind_khadri has joined #rtems 2013-08-02T02:39:33 *** hiddenpearls has joined #rtems 2013-08-02T03:08:23 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-02T03:33:26 *** arvind_khadri has quit IRC (Read error: Connection reset by peer) 2013-08-02T03:33:45 *** arvind_khadri has joined #rtems 2013-08-02T03:53:45 *** sebhub has quit IRC (Ping timeout: 245 seconds) 2013-08-02T03:57:02 *** S_Somani has quit IRC (Quit: Leaving.) 2013-08-02T04:03:45 *** hiddenpearls has joined #rtems 2013-08-02T05:41:20 *** sebhub has joined #rtems 2013-08-02T06:08:03 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-08-02T07:18:45 *** antgreen has quit IRC (Ping timeout: 245 seconds) 2013-08-02T07:35:10 *** tictoc has joined #rtems 2013-08-02T08:05:14 *** kiwichris has joined #rtems 2013-08-02T08:15:22 *** arvind_khadri has quit IRC (Remote host closed the connection) 2013-08-02T08:17:23 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-02T08:27:19 *** antgreen has joined #rtems 2013-08-02T08:33:43 *** freenix has quit IRC (Quit: Leaving) 2013-08-02T08:52:20 sebhub, hi 2013-08-02T08:53:18 hi chris 2013-08-02T08:54:03 A possible solution to "processor inversion" is to see if the current task on the core blocking the higher priority can be moved to another core. 2013-08-02T08:55:11 yes, lets hope you don't move forever ;-) 2013-08-02T09:08:37 *** phipse has joined #rtems 2013-08-02T09:21:47 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-02T09:22:08 *** weiY has joined #rtems 2013-08-02T09:22:39 Hi sebhub 2013-08-02T09:22:47 hi 2013-08-02T09:22:58 i have seen the mail about atomic test case error 2013-08-02T09:23:24 is there a problem with my tool chain? 2013-08-02T09:23:46 it maybe caused by some unsupport memory order in toolchain for the architecture 2013-08-02T09:24:05 you can give me the configure cmd 2013-08-02T09:24:17 i build them in my environment 2013-08-02T09:24:57 configure --target=i386-rtems4.11 --prefix=/scratch/opt/rtems-4.11 --enable-posix --enable-rtemsbsp=pc686 --enable-maintainer-mode --enable-smp --enable-tests --disable-posix --disable-cxx --disable-networking 2013-08-02T09:25:16 configure --target=powerpc-rtems4.11 --prefix=/scratch/opt/rtems-4.11 --enable-posix --enable-rtemsbsp=qoriq_p1020rdb --enable-maintainer-mode --enable-tests --enable-cxx --enable-networking --enable-smp 2013-08-02T09:25:35 ok, i will build them now 2013-08-02T09:26:19 and by the way, if you have free time you can see the phase fair test case in my github 2013-08-02T09:26:46 ok, i will have a look at it over the weekend 2013-08-02T09:27:34 thank you, now the phase fair test case have some problem to be run, if you found any problem please let see 2013-08-02T09:35:13 cu, have to leave for the train 2013-08-02T09:35:28 *** sebhub has quit IRC (Remote host closed the connection) 2013-08-02T09:43:38 *** kiwichris has joined #rtems 2013-08-02T09:45:42 *** kiwichris has quit IRC (Client Quit) 2013-08-02T10:51:06 *** tictoc has quit IRC (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212]) 2013-08-02T10:57:06 *** kiwichris has joined #rtems 2013-08-02T11:27:16 *** hiddenpearls has joined #rtems 2013-08-02T11:31:13 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-02T11:37:27 *** hiddenpearls has joined #rtems 2013-08-02T11:40:32 *** antgreen has quit IRC (Quit: Leaving) 2013-08-02T11:40:44 *** weiY has quit IRC (Quit: Linkinus - http://linkinus.com) 2013-08-02T11:44:09 *** hiddenpearls1 has joined #rtems 2013-08-02T11:48:10 *** hiddenpearls has quit IRC (Ping timeout: 256 seconds) 2013-08-02T12:06:50 *** monstr has quit IRC (Ping timeout: 268 seconds) 2013-08-02T12:07:23 *** hiddenpearls has joined #rtems 2013-08-02T12:11:15 *** hiddenpearls1 has quit IRC (Ping timeout: 245 seconds) 2013-08-02T12:12:08 *** hiddenpearls1 has joined #rtems 2013-08-02T12:13:07 *** hiddenpearls has quit IRC (Ping timeout: 246 seconds) 2013-08-02T13:20:26 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-08-02T13:32:02 *** S_Somani has joined #rtems 2013-08-02T14:05:52 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-08-02T14:11:00 *** hiddenpearls has joined #rtems 2013-08-02T14:16:40 *** hiddenpearls has quit IRC (Ping timeout: 245 seconds) 2013-08-02T14:23:29 *** hiddenpearls has joined #rtems 2013-08-02T14:31:32 *** S_Somani has left #rtems 2013-08-02T14:55:42 *** antgreen has joined #rtems 2013-08-02T15:15:56 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-02T15:22:58 *** antgreen has quit IRC (Remote host closed the connection) 2013-08-02T15:32:44 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-02T15:33:56 *** kiwichris has joined #rtems 2013-08-02T15:45:36 *** hiddenpearls has joined #rtems 2013-08-02T16:42:57 *** hiddenpearls1 has joined #rtems 2013-08-02T16:42:58 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-02T16:59:40 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-08-02T17:11:53 *** phipse has joined #rtems 2013-08-02T18:23:52 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-08-02T18:32:27 *** hiddenpearls has joined #rtems 2013-08-02T18:38:47 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-02T20:55:40 *** antgreen has joined #rtems 2013-08-02T21:08:29 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-02T21:37:22 *** weiY has joined #rtems 2013-08-02T22:26:52 *** antgreen has quit IRC (Ping timeout: 264 seconds) 2013-08-02T23:11:35 *** cafi has joined #rtems 2013-08-02T23:13:02 hi 2013-08-02T23:28:51 have tried someone to compile rtems for stm32f4 ? 2013-08-03T00:28:04 *** freenix has joined #rtems 2013-08-03T00:54:39 *** monstr has joined #rtems 2013-08-03T01:01:21 *** monstr has quit IRC (Ping timeout: 264 seconds) 2013-08-03T01:08:29 *** cafi has quit IRC (Ping timeout: 250 seconds) 2013-08-03T01:12:10 *** kiwichris has joined #rtems 2013-08-03T02:08:43 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-03T02:56:20 *** phipse has joined #rtems 2013-08-03T04:31:39 *** freenix has quit IRC (Quit: Leaving) 2013-08-03T05:40:02 *** arvind_khadri has joined #rtems 2013-08-03T07:25:04 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-08-03T07:32:49 *** hiddenpearls has joined #rtems 2013-08-03T07:35:03 *** hiddenpearls1 has joined #rtems 2013-08-03T07:38:28 *** hiddenpearls has quit IRC (Ping timeout: 245 seconds) 2013-08-03T08:12:49 *** phipse has joined #rtems 2013-08-03T08:16:56 *** antgreen has joined #rtems 2013-08-03T08:32:28 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-08-03T08:50:29 *** hiddenpearls has joined #rtems 2013-08-03T08:52:32 *** ericbmer1itt has joined #rtems 2013-08-03T08:54:37 *** hiddenpearls has quit IRC (Client Quit) 2013-08-03T08:55:35 *** ericbmerritt has quit IRC (Ping timeout: 240 seconds) 2013-08-03T08:59:54 *** antgreen has quit IRC (Ping timeout: 268 seconds) 2013-08-03T09:33:06 *** hiddenpearls has joined #rtems 2013-08-03T10:33:25 *** hiddenpearls1 has joined #rtems 2013-08-03T10:37:23 *** hiddenpearls has quit IRC (Ping timeout: 264 seconds) 2013-08-03T10:54:39 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-08-03T11:11:39 *** antgreen has joined #rtems 2013-08-03T11:50:42 *** arvind_khadri has quit IRC (Remote host closed the connection) 2013-08-03T12:04:40 *** weiY has quit IRC (Quit: Linkinus - http://linkinus.com) 2013-08-03T12:17:00 *** kiwichris has joined #rtems 2013-08-03T12:18:46 *** hiddenpearls has joined #rtems 2013-08-03T12:32:23 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-03T12:42:18 *** hiddenpearls1 has joined #rtems 2013-08-03T12:44:52 *** hiddenpearls has quit IRC (Ping timeout: 264 seconds) 2013-08-03T12:45:32 *** hiddenpearls has joined #rtems 2013-08-03T12:48:28 *** hiddenpearls1 has quit IRC (Ping timeout: 245 seconds) 2013-08-03T12:48:43 *** hiddenpearls1 has joined #rtems 2013-08-03T12:49:04 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-08-03T12:50:59 *** hiddenpearls1 has quit IRC (Client Quit) 2013-08-03T12:51:15 *** hiddenpearls has quit IRC (Ping timeout: 245 seconds) 2013-08-03T12:54:51 *** antgreen has quit IRC (Ping timeout: 268 seconds) 2013-08-03T13:17:18 *** S_Somani has joined #rtems 2013-08-03T13:24:46 *** hiddenpearls has joined #rtems 2013-08-03T13:28:37 *** S_Somani has quit IRC (Ping timeout: 276 seconds) 2013-08-03T13:49:04 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-03T16:52:23 *** hiddenpearls has joined #rtems 2013-08-03T16:58:40 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-03T19:07:42 *** hiddenpearls has joined #rtems 2013-08-03T19:21:31 *** phipse has joined #rtems 2013-08-03T19:29:24 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-03T19:54:28 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-08-03T21:03:26 *** hiddenpearls has joined #rtems 2013-08-03T21:34:32 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-03T21:50:15 *** kiwichris has joined #rtems 2013-08-03T22:38:32 *** kiwichris_ has joined #rtems 2013-08-03T22:39:18 *** kiwichris has quit IRC (Ping timeout: 245 seconds) 2013-08-03T22:41:52 *** kiwichris_ has quit IRC (Client Quit) 2013-08-03T22:50:56 *** keon has joined #rtems 2013-08-03T22:52:46 why rtems-4.10-1.2.11-src.tar.bz2 from Gaisler has no configure file?so how to install it?thanks 2013-08-03T23:44:45 *** keon has quit IRC (Quit: 离开) 2013-08-04T00:18:21 *** the9a3eedi has joined #rtems 2013-08-04T01:10:46 *** keon has joined #rtems 2013-08-04T01:39:01 *** keon has quit IRC (Quit: 离开) 2013-08-04T02:45:23 *** the9a3eedi-2 has joined #rtems 2013-08-04T02:48:14 *** the9a3eedi has quit IRC (Ping timeout: 240 seconds) 2013-08-04T02:50:01 *** the9a3eedi-2 has quit IRC (Ping timeout: 256 seconds) 2013-08-04T02:56:17 *** the9a3eedi has joined #rtems 2013-08-04T03:00:39 *** phipse has joined #rtems 2013-08-04T04:19:09 *** weiY has joined #rtems 2013-08-04T04:30:38 *** hiddenpearls has joined #rtems 2013-08-04T04:41:52 *** phipse has quit IRC (Ping timeout: 264 seconds) 2013-08-04T05:02:43 *** hiddenpearls1 has joined #rtems 2013-08-04T05:06:06 *** hiddenpearls has quit IRC (Ping timeout: 268 seconds) 2013-08-04T05:07:09 *** hiddenpearls has joined #rtems 2013-08-04T05:09:11 *** hiddenpearls1 has quit IRC (Ping timeout: 268 seconds) 2013-08-04T05:11:36 *** hiddenpearls1 has joined #rtems 2013-08-04T05:14:01 *** freenix has joined #rtems 2013-08-04T05:14:53 *** hiddenpearls has quit IRC (Ping timeout: 240 seconds) 2013-08-04T05:17:17 *** hiddenpearls has joined #rtems 2013-08-04T05:17:17 *** hiddenpearls1 has quit IRC (Read error: Connection reset by peer) 2013-08-04T05:24:44 *** hiddenpearls has quit IRC (Read error: No route to host) 2013-08-04T05:25:01 *** hiddenpearls has joined #rtems 2013-08-04T05:38:14 *** weiY has quit IRC (Quit: Leaving...) 2013-08-04T05:53:16 *** hiddenpearls1 has joined #rtems 2013-08-04T05:57:16 *** hiddenpearls has quit IRC (Ping timeout: 276 seconds) 2013-08-04T06:46:21 *** the9a3eedi has quit IRC (Read error: Connection reset by peer) 2013-08-04T07:18:04 *** weiY has joined #rtems 2013-08-04T07:27:00 *** weiY has quit IRC (Quit: Leaving...) 2013-08-04T07:27:20 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-08-04T08:15:01 *** weiY has joined #rtems 2013-08-04T08:16:07 *** zhangwenjie has joined #rtems 2013-08-04T08:16:08 *** weiY has quit IRC (Read error: Connection reset by peer) 2013-08-04T08:16:19 *** zhangwenjie has quit IRC (Client Quit) 2013-08-04T09:51:16 *** freenix has quit IRC (Read error: Connection reset by peer) 2013-08-04T10:45:46 *** vipulnayyar has joined #rtems 2013-08-04T11:10:24 *** vipulnayyar has quit IRC (Quit: Leaving) 2013-08-04T11:23:41 *** hiddenpearls has joined #rtems 2013-08-04T11:27:03 *** hiddenpearls1 has joined #rtems 2013-08-04T11:29:54 *** hiddenpearls has quit IRC (Ping timeout: 264 seconds) 2013-08-04T12:02:22 *** kiwichris has joined #rtems 2013-08-04T12:04:03 *** hiddenpearls has joined #rtems 2013-08-04T12:05:44 *** hiddenpearls1 has quit IRC (Read error: No route to host) 2013-08-04T12:05:48 *** hiddenpearls2 has joined #rtems 2013-08-04T12:09:55 *** hiddenpearls has quit IRC (Ping timeout: 260 seconds) 2013-08-04T12:11:28 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-04T12:15:05 *** kiwichris has joined #rtems 2013-08-04T12:18:49 *** kiwichris has quit IRC (Client Quit) 2013-08-04T12:25:08 *** kiwichris has joined #rtems 2013-08-04T12:34:56 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-04T12:38:06 *** kiwichris has joined #rtems 2013-08-04T12:38:23 *** hiddenpearls2 has quit IRC (Ping timeout: 260 seconds) 2013-08-04T12:40:40 *** hiddenpearls1 has joined #rtems 2013-08-04T12:46:48 *** hiddenpearls1 has quit IRC (Ping timeout: 245 seconds) 2013-08-04T12:50:01 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-04T12:53:23 *** kiwichris has joined #rtems 2013-08-04T12:55:56 *** hiddenpearls has joined #rtems 2013-08-04T13:02:51 *** kiwichris has quit IRC (Quit: This computer has gone to sleep) 2013-08-04T13:10:55 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-04T13:23:25 *** hiddenpearls has joined #rtems 2013-08-04T13:26:57 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-04T13:28:35 *** hiddenpearls has joined #rtems 2013-08-04T13:31:50 *** hiddenpearls1 has joined #rtems 2013-08-04T13:31:50 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-04T13:34:13 *** hiddenpearls1 has quit IRC (Read error: Connection reset by peer) 2013-08-04T13:37:01 *** hiddenpearls has joined #rtems 2013-08-04T13:41:18 *** hiddenpearls1 has joined #rtems 2013-08-04T13:42:27 *** hiddenpearls2 has joined #rtems 2013-08-04T13:42:33 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-04T13:45:45 *** hiddenpearls1 has quit IRC (Ping timeout: 264 seconds) 2013-08-04T14:04:47 *** kiwichris has joined #rtems 2013-08-04T14:07:57 *** hiddenpearls has joined #rtems 2013-08-04T14:10:37 *** hiddenpearls2 has quit IRC (Ping timeout: 276 seconds) 2013-08-04T14:13:39 *** hiddenpearls has quit IRC (Read error: Connection reset by peer) 2013-08-04T14:13:45 *** hiddenpearls1 has joined #rtems 2013-08-04T14:22:04 *** hiddenpearls has joined #rtems 2013-08-04T14:24:55 *** hiddenpearls1 has quit IRC (Ping timeout: 276 seconds) 2013-08-04T14:59:00 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-04T17:52:22 *** hiddenpearls has joined #rtems 2013-08-04T17:52:48 *** kiwichris has joined #rtems 2013-08-04T18:15:01 *** hiddenpearls has quit IRC (Ping timeout: 276 seconds) 2013-08-04T18:26:51 *** hiddenpearls has joined #rtems 2013-08-04T18:47:25 *** hiddenpearls has quit IRC (Quit: Leaving.) 2013-08-04T19:21:20 *** hiddenpearls has joined #rtems 2013-08-04T19:45:18 *** hiddenpearls1 has joined #rtems 2013-08-04T19:47:58 *** hiddenpearls has quit IRC (Ping timeout: 276 seconds) 2013-08-04T20:56:34 *** hiddenpearls1 has quit IRC (Quit: Leaving.) 2013-08-04T23:22:02 *** kiwichris has quit IRC (Quit: This computer has gone to sleep)