Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(4) |
Aug
(10) |
Sep
(9) |
Oct
|
Nov
(22) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(5) |
Feb
(9) |
Mar
(10) |
Apr
(22) |
May
(35) |
Jun
(72) |
Jul
(21) |
Aug
(14) |
Sep
(23) |
Oct
(60) |
Nov
(82) |
Dec
(19) |
2005 |
Jan
(42) |
Feb
(59) |
Mar
(94) |
Apr
(57) |
May
(48) |
Jun
(22) |
Jul
(8) |
Aug
(12) |
Sep
(16) |
Oct
(8) |
Nov
(38) |
Dec
(31) |
2006 |
Jan
(37) |
Feb
(18) |
Mar
(139) |
Apr
(113) |
May
(52) |
Jun
(50) |
Jul
(90) |
Aug
(58) |
Sep
(33) |
Oct
(35) |
Nov
(30) |
Dec
(20) |
2007 |
Jan
(26) |
Feb
(47) |
Mar
(102) |
Apr
(64) |
May
(68) |
Jun
(36) |
Jul
(67) |
Aug
(41) |
Sep
(39) |
Oct
(97) |
Nov
(74) |
Dec
(146) |
2008 |
Jan
(156) |
Feb
(66) |
Mar
(73) |
Apr
(48) |
May
(91) |
Jun
(79) |
Jul
(106) |
Aug
(55) |
Sep
(31) |
Oct
(55) |
Nov
(33) |
Dec
(33) |
2009 |
Jan
(42) |
Feb
(22) |
Mar
(36) |
Apr
(22) |
May
(26) |
Jun
(36) |
Jul
(5) |
Aug
(3) |
Sep
(29) |
Oct
(23) |
Nov
(24) |
Dec
(12) |
2010 |
Jan
(89) |
Feb
(23) |
Mar
(12) |
Apr
(54) |
May
(12) |
Jun
(44) |
Jul
(19) |
Aug
(30) |
Sep
(10) |
Oct
(8) |
Nov
(8) |
Dec
(26) |
2011 |
Jan
(1) |
Feb
(8) |
Mar
(12) |
Apr
(6) |
May
(3) |
Jun
(34) |
Jul
(9) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(5) |
2012 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
|
2
(1) |
3
|
4
|
5
|
6
|
7
|
8
(3) |
9
|
10
(2) |
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
(1) |
28
(3) |
29
|
30
|
|
|
From: Luis Manso <luis.manso@gm...> - 2010-09-27 02:24:24
|
Hi, I'm using libgazebo to connect to the simulator. I would like to run two separate clients, but the second client I run always gets stuck. Using versions pre-0.9 everything worked just fine using the following line in both clients: client->ConnectWait(0, 0); Since I switched to the SVN version it does not work anymore. According to the documentation, I understand that the first client must connect using: client->ConnectWait(0, GZ_CLIENT_ID_USER_FIRST+0); and the second, using: client->ConnectWait(0, GZ_CLIENT_ID_USER_FIRST+1); The problem is that it does not work neither in the SVN or 0.9 version. The second client I run always get stuck in the corresponding line. I tried using 0.9 and the last SVN revision. Some information: void Client::ConnectWait(int serverId, int clientId) stops in line 180: simulationIface.Close(); void SimulationIface::Close() stops in line 102: this->goAckThread->join(); //wait till it's stopped It seems that the thread does'nt want to be stopped :) As I don't know much about boost threads, I don't know how to solve the problem. Regards Luis |