1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-12 05:13:04 +00:00

Improve queue management gnss-sdr and in TTFF tests.

Always destroy queues when exiting
This commit is contained in:
Carles Fernandez
2016-10-03 17:43:06 +02:00
parent 047ced2b20
commit 08f0a36075
6 changed files with 43 additions and 34 deletions

View File

@@ -213,7 +213,9 @@ galileo_e1_pvt_cc::galileo_e1_pvt_cc(unsigned int nchannels, bool dump, std::str
galileo_e1_pvt_cc::~galileo_e1_pvt_cc()
{}
{
msgctl(sysv_msqid, IPC_RMID, NULL);
}

View File

@@ -313,7 +313,9 @@ gps_l1_ca_pvt_cc::gps_l1_ca_pvt_cc(unsigned int nchannels,
gps_l1_ca_pvt_cc::~gps_l1_ca_pvt_cc()
{}
{
msgctl(sysv_msqid, IPC_RMID, NULL);
}
bool pseudoranges_pairCompare_min(const std::pair<int,Gnss_Synchro>& a, const std::pair<int,Gnss_Synchro>& b)

View File

@@ -290,7 +290,9 @@ hybrid_pvt_cc::hybrid_pvt_cc(unsigned int nchannels, bool dump, std::string dump
hybrid_pvt_cc::~hybrid_pvt_cc()
{}
{
msgctl(sysv_msqid, IPC_RMID, NULL);
}