1
0
mirror of https://github.com/simh/simh.git synced 2026-05-04 15:05:39 +00:00

ALL: Massive 'const' cleanup

These changes facilitate more robust parameter type checking and helps
to identify unexpected coding errors.

Most simulators can now also be compiled with a C++ compiler without
warnings.

Additionally, these changes have also been configured to facilitate easier
backporting of simulator and device simulation modules to run under the
simh v3.9+ SCP framework.
This commit is contained in:
Mark Pizzolato
2016-05-15 15:25:33 -07:00
parent 60a8a2d43d
commit 5531ccb175
444 changed files with 4119 additions and 3798 deletions

View File

@@ -8,6 +8,8 @@
#ifndef _MISC_H_
#define _MISC_H_
#include "socket.h"
struct ex_list {
int ex_pty; /* Do we want a pty? */
struct in_addr ex_addr; /* Server address */
@@ -47,7 +49,7 @@ struct emu_t {
void slirp_insque(void *, void *);
void slirp_remque(void *);
int add_exec(struct ex_list **, int, char *, struct in_addr, int);
int add_exec(struct ex_list **, int, const char *, struct in_addr, int);
int fork_exec(struct socket *so, const char *ex, int do_pty);
#endif