⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qsharedmemory_p.cpp

📁 奇趣公司比较新的qt/emd版本
💻 CPP
字号:
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qsharedmemory_p.h"#if !defined(QT_NO_QWS_MULTIPROCESS)#include <sys/shm.h>QSharedMemory::QSharedMemory()    : shmBase(0), shmSize(0), character(0),  shmId(-1), key(-1){}QSharedMemory::~QSharedMemory(){    detach();}/*  man page says:    On  Linux,  it is possible to attach a shared memory segment even if it    is already marked to be deleted.  However, POSIX.1-2001 does not  spec-    ify this behaviour and many other implementations do not support it.*/bool QSharedMemory::create(int size){    if (shmId != -1)        detach();    shmId = shmget(IPC_PRIVATE, size, IPC_CREAT|0600);    if (shmId == -1) {#ifdef QT_SHM_DEBUG        perror("QSharedMemory::create allocating shared memory");        qWarning("Error allocating shared memory of size %d", size);#endif        return false;    }    shmBase = shmat(shmId,0,0);    shmctl(shmId, IPC_RMID, 0);    if (shmBase == (void*)-1) {#ifdef QT_SHM_DEBUG        perror("QSharedMemory::create attaching to shared memory");        qWarning("Error attaching to shared memory id %d", shmId);#endif        shmBase = 0;        return false;    }    return true;}bool QSharedMemory::attach(int id){    if (shmId == id)        return id != -1;    if (shmId != -1)        detach();    shmBase = shmat(id,0,0);    if (shmBase == (void*)-1) {#ifdef QT_SHM_DEBUG        perror("QSharedMemory::attach attaching to shared memory");        qWarning("Error attaching to shared memory 0x%x of size %d",                 id, size());#endif        shmBase = 0;        return false;    }    shmId = id;    return true;}void QSharedMemory::detach (){    if (!shmBase)        return;    shmdt (shmBase);    shmBase = 0;    shmSize = 0;    shmId = -1;}void QSharedMemory::setPermissions (mode_t mode){  struct shmid_ds shm;  shmctl (shmId, IPC_STAT, &shm);  shm.shm_perm.mode = mode;  shmctl (shmId, IPC_SET, &shm);}int QSharedMemory::size () const{    struct shmid_ds shm;    shmctl (shmId, IPC_STAT, &shm);    return shm.shm_segsz;}// old APIQSharedMemory::QSharedMemory (int size, const QString &filename, char c){  shmSize = size;  shmFile = filename;  shmBase = 0;  shmId = -1;  character = c;  key = ftok (shmFile.toLatin1().constData(), c);}bool QSharedMemory::create (){  shmId = shmget (key, shmSize, IPC_CREAT | 0666);  return (shmId != -1);}void QSharedMemory::destroy (){    if (shmId != -1)        shmctl(shmId, IPC_RMID, 0);}bool QSharedMemory::attach (){  if (shmId == -1)    shmId = shmget (key, shmSize, 0);  shmBase = shmat (shmId, 0, 0);  if ((long)shmBase == -1)      shmBase = 0;  return (long)shmBase != 0;}#endif // QT_NO_QWS_MULTIPROCESS

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -