Cleaned up read tag and call tag to compile.

This commit is contained in:
brad Arant 2024-07-08 18:50:46 -07:00
parent 666a12e16b
commit 49edce1f34
4 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,6 @@
#include "__call.h"
#include "Exception.h"
#include "MString.h"
#include <limits.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
@ -14,11 +13,11 @@ namespace jet {
throw coreutils::Exception("call cannot have a container.");
if(!variableDefined(coreutils::ZString("pgm")))
throw coreutils::Exception("pgm keyword must be specified.");
pipe[fd]; // TODO: Get these pipes to work with name and input keywords.
dup2(0);
pipe(fd); // TODO: Get these pipes to work with name and input keywords.
dup2(fd[0], 1);
if(pid != fork()) {
argv[0] = variables["pgm"]; // TODO: Need to peel off the program name only and pass as argv[0].
for(ix = 1; ix <= ARG_MAX; ++ix) {
argv[0] = variables["pgm"].c_str(); // TODO: Need to peel off the program name only and pass as argv[0].
for(ix = 1; ix <= 50; ++ix) {
coreutils::MString arg("arg");
arg << ix;
if(variableDefined(arg))
@ -30,7 +29,7 @@ namespace jet {
execve(variables["pgm"].c_str(), argv, NULL);
exit(-1);
}
waitpid(&status);
waitpid(pid, &status,0);
}

View File

@ -1,4 +1,4 @@
#include "__cpmment.h"
#include "__comment.h"
#include "Exception.h"
namespace jet {

View File

@ -1,5 +1,6 @@
#include "__read.h"
#include "Exception.h"
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
@ -10,7 +11,7 @@ namespace jet {
throw coreutils::Exception("file keyword must be specified.");
if(hasContainer)
throw coreutils::Exception("read tag does not have a container.");
fd = open(variables["file"], O_RDONLY);
fd = open(variables["file"].c_str(), O_RDONLY);
while(len = read(fd, &buffer, sizeof(buffer - 1))) {
buffer[len] = 0;
out << buffer;

BIN
testjet

Binary file not shown.