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

📄 processexec.cpp

📁 这是linux下读取pc主板温度传感器的源代码
💻 CPP
字号:
/***************************************************************************                          processexec.cpp  -  description                             -------------------    begin                : s醔 abr 27 2002    copyright            : (C) 2002 by asdf    email                : dsf ***************************************************************************//*************************************************************************** *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License as published by  * *   the Free Software Foundation; either version 2 of the License, or     * *   (at your option) any later version.                                   * *                                                                         * ***************************************************************************/#include <string.h>#include "processexec.h"ProcessExec::ProcessExec(): KProcess(){ clearData(); connect( this, SIGNAL(receivedStdout(KProcess *, char *, int)),this, SLOT(slotReceivedStdout(KProcess *, char *, int)) ); connect( this, SIGNAL(receivedStderr(KProcess *, char *, int)),this, SLOT(slotReceivedStderr(KProcess *, char *, int)) );}ProcessExec::~ProcessExec(){}bool ProcessExec::run(){ clearData(); return start( NotifyOnExit, Communication(Stdout | Stderr )); // | NoRead));}bool ProcessExec::runAndWait(){ clearData(); return start(Block,Communication(Stdout|Stderr));}void ProcessExec::slotReceivedStdout(KProcess *proc, char *buf, int len){ if(bufLen+len>=bufMax) len= bufMax-bufLen; if(len) {   memcpy(buffer+bufLen,buf,len);   bufLen+= len;   buffer[bufLen]=0; }}void ProcessExec::slotReceivedStderr(KProcess *proc, char *buf, int len){ fErrors= true; slotReceivedStdout(proc,buf,len);}

⌨️ 快捷键说明

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