-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix destruction data-race on participant removal in intra-process (#5034
) * Refs #21293: Add BB test Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Reinforce test to fail more frequently Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Add RefCountedPointer.hpp to utils Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Add unittests for RefCountedPointer Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: LocalReaderPointer.hpp Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: BaseReader aggregates LocalReaderPointer Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: ReaderLocator aggregates LocalReaderPointer Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: RTPSDomainImpl::find_local_reader returns a sared_ptr<LocalReaderPointer> and properly calls local_actions_on_reader_removed() Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: RTPSWriters properly using LocalReaderPointer::Instance when accessing local reader Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Linter Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Fix windows warnings Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Address Miguel's review Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: Apply last comment Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> * Refs #21293: NIT Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> --------- Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com> (cherry picked from commit 456e45f)
- Loading branch information
1 parent
c8c8020
commit 8d8f1ca
Showing
17 changed files
with
623 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2024 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/** | ||
* @file LocalReaderPointer.hpp | ||
*/ | ||
|
||
#ifndef FASTDDS_RTPS_READER__LOCALREADERPOINTER_HPP | ||
#define FASTDDS_RTPS_READER__LOCALREADERPOINTER_HPP | ||
|
||
#include <utils/RefCountedPointer.hpp> | ||
|
||
namespace eprosima { | ||
namespace fastdds { | ||
namespace rtps { | ||
|
||
class BaseReader; | ||
|
||
using LocalReaderPointer = RefCountedPointer<BaseReader>; | ||
|
||
} // namespace rtps | ||
} // namespace fastdds | ||
} // namespace eprosima | ||
|
||
#endif // FASTDDS_RTPS_READER__LOCALREADERPOINTER_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.