Skip to content

Commit

Permalink
Merge pull request #177 from jonaski/qnativeipckey
Browse files Browse the repository at this point in the history
Use new QNativeIpcKey based QSharedMemory constructor with Qt 6.6 and higher
  • Loading branch information
itay-grudev committed Sep 28, 2023
2 parents e22a6bc + ca8b561 commit c6519b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.5.0

* Switch to the new QNativeIpcKey based QSharedMemory constructor with Qt 6.6 and higher. - _Jonas Kvinge_

## 3.4.1

* Improved Windows advapi32 link library dependency. - _Frederik Seiffert_
Expand Down
8 changes: 8 additions & 0 deletions singleapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,20 @@ SingleApplication::SingleApplication( int &argc, char *argv[], bool allowSeconda
#ifdef Q_OS_UNIX
// By explicitly attaching it and then deleting it we make sure that the
// memory is deleted even after the process has crashed on Unix.
#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)
d->memory = new QSharedMemory( QNativeIpcKey( d->blockServerName ) );
#else
d->memory = new QSharedMemory( d->blockServerName );
#endif
d->memory->attach();
delete d->memory;
#endif
// Guarantee thread safe behaviour with a shared memory block.
#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)
d->memory = new QSharedMemory( QNativeIpcKey( d->blockServerName ) );
#else
d->memory = new QSharedMemory( d->blockServerName );
#endif

// Create a shared memory block
if( d->memory->create( sizeof( InstancesInfo ) )){
Expand Down

0 comments on commit c6519b6

Please sign in to comment.