0

我想编写一个运行 2 个线程的程序。当主线程忙于工作时,另一个线程充当交互式命令行,读取用户输入,然后将某些内容打印到终端。

我的代码现在看起来像这样:

#include <pthread.h>

//Needed for pthread
#ifndef _REENTRANT
#define _REENTRANT
#endif

#include "whatever_u_need.h"
bool g_isDone = false;

void* cmdMain( void* ) {
    static char* buf;
    buf = (char*)malloc( 257 );
    buf[256]=0;
    size_t size = 256;

    while(!g_isDone) {
        printf( "> " );
        getline( &buf, &size, stdin );
        if( buf[0] == 'q' ) { 
            g_isDone  =true;
            break;
        }
        //echo
        puts(buf);
    }
    free( buf );
    pthread_exit(NULL);
}

pthread_t g_cmd_thread;

int main() {
    pthread_create( &g_cmd_thread, NULL, cmdMain, NULL );
    while(1) {
        //non-interactive jobs
    }
    pthread_cancel( g_cmd_thread );

    return 0;
}

问题是,在执行 getline() 时,我按了 ENTER,然后终端向下移动了 2 行。肯定两个线程都收到了“ENTER 消息”。如何关闭主线程的终端 I/O 但保留其他线程的命令行功能?

我正在使用带有 bash shell 的 Ubuntu。

4

2 回答 2

2

getline从您按 Enter 时开始保留换行符。然后,您puts使用该缓冲区并puts添加换行符。因此终端向下移动两行。

来自人(3)getline:

getline() reads an entire line from stream, storing the address of the buffer containing the text into *lineptr. The buffer is null-terminated and includes the newline character, if one was found.

从人(3)提出:

puts() writes the string s and a trailing newline to stdout.
于 2013-10-01T04:52:27.787 回答
0

我想我有这个错误。默认情况下,在 中puts()添加一个尾随换行符stdout,这会在上面的代码中产生“双换行符”效果。该错误与多线程完全无关。

我想下次我会仔细检查手册页。

于 2013-10-01T04:57:31.797 回答