diff options
author | Shyamnath Premnadh <[email protected]> | 2024-12-11 13:02:23 +0100 |
---|---|---|
committer | Shyamnath Premnadh <[email protected]> | 2024-12-12 13:47:55 +0100 |
commit | f6069b9330fc01b68296ef4dffd474ed98784ec6 (patch) | |
tree | d3f504d8070430e9f7dfe68e614cc11729420950 /examples/corelib/ipc | |
parent | 31a9db93d3c355d8e6be4d31eacc02b93d41ffd3 (diff) |
Documentation/Examples: Add missing docs
Some examples did not have any documentation. This patch adds
the respective documentation.
Pick-to: 6.8
Change-Id: I9698752b654c2df29fd3572f6bc66a9df56f9903
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'examples/corelib/ipc')
-rw-r--r-- | examples/corelib/ipc/sharedmemory/doc/sharedmemory.png | bin | 0 -> 14926 bytes | |||
-rw-r--r-- | examples/corelib/ipc/sharedmemory/doc/sharedmemory.rst | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/examples/corelib/ipc/sharedmemory/doc/sharedmemory.png b/examples/corelib/ipc/sharedmemory/doc/sharedmemory.png Binary files differnew file mode 100644 index 000000000..53244d3f5 --- /dev/null +++ b/examples/corelib/ipc/sharedmemory/doc/sharedmemory.png diff --git a/examples/corelib/ipc/sharedmemory/doc/sharedmemory.rst b/examples/corelib/ipc/sharedmemory/doc/sharedmemory.rst new file mode 100644 index 000000000..01f8a320e --- /dev/null +++ b/examples/corelib/ipc/sharedmemory/doc/sharedmemory.rst @@ -0,0 +1,11 @@ +IPC: Shared Memory +================== + +Demonstrates how to share image data between different processes using the +Shared Memory IPC mechanism. It corresponds to the Qt example +`Shared Memory Example <https://doc.qt.io/qt-6/qtcore-ipc-sharedmemory-example.html>`_. + +.. image:: sharedmemory.png + :align: center + :alt: sharedmemory screenshot + :width: 400 |