gem5 v24.0.0.0
|
#include <sys/ioctl.h>
#include <sys/termios.h>
#include "dev/serial/terminal.hh"
#include <poll.h>
#include <unistd.h>
#include <cctype>
#include <cerrno>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include "base/atomicio.hh"
#include "base/logging.hh"
#include "base/output.hh"
#include "base/socket.hh"
#include "base/trace.hh"
#include "debug/Terminal.hh"
#include "debug/TerminalVerbose.hh"
#include "dev/platform.hh"
#include "dev/serial/uart.hh"
Go to the source code of this file.
Namespaces | |
namespace | gem5 |
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved. | |
Macros | |
#define | MORE_PENDING (1ULL << 61) |
#define | RECEIVE_SUCCESS (0ULL << 62) |
#define | RECEIVE_NONE (2ULL << 62) |
#define | RECEIVE_ERROR (3ULL << 62) |
#define MORE_PENDING (1ULL << 61) |
Definition at line 285 of file terminal.cc.
Referenced by gem5::Terminal::console_in().
#define RECEIVE_ERROR (3ULL << 62) |
Definition at line 288 of file terminal.cc.
#define RECEIVE_NONE (2ULL << 62) |
Definition at line 287 of file terminal.cc.
Referenced by gem5::Terminal::console_in().
#define RECEIVE_SUCCESS (0ULL << 62) |
Definition at line 286 of file terminal.cc.
Referenced by gem5::Terminal::console_in().