开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Hi - testing

Mike Stramba
 

Post here to get "unmoderated" for h390-mvs

Mike


Odd C compiler behavior on P390

 

For some reason argv[1] does not get converted properly. If the folder name is hard coded the program works fine. If its value is passed through argv[1] the program will display the value correctly, but no directory list gets retrieved. This issue happens on MVS, but if the code is compiled on Linux it works as expected. Here is the code.? The code below will only display the contents of / but not its branches.


?#define _POSIX_SOURCE
?#include <dirent.h>
?#include <errno.h>
?#include <sys/stat.h>
?#include <sys/types.h>
?#undef _POSIX_SOURCE
?#include<stdlib.h>
?#include<stdio.h>
?#include <unistd.h>
?#include <string.h>
?#include <sys/wait.h>
?#include <grp.h>
?#include <pwd.h>
?#include <time.h>
?#include <fcntl.h>
??? char path[1024];
void listdir(const char *name, int indent,char *other)
{
??? DIR *dir;
??? struct dirent *entry;
?????????????????????????????????????????????????????? ?
??? puts(name);
??? if (!(dir = opendir(name)))
??????? return;
?????????????????????????????????????????????????????? ?
??? while ((entry = readdir(dir)) != NULL) {
??????????? printf("%*s- %s\n", indent, "", entry->d_name);
??????? if (strcmp(entry->d_name, other) == 0)
??????? listdir(entry->d_name,? 2,other);
??? }
??? closedir(dir);
}
???????????????????????????????????????????????????????????????? ?
int main(int argc, char **argv)
??? {
???? char* foldername = ".";
???? puts(argv[1]);
???? listdir(foldername, 0,argv[1]);
???? return 0;
?}






Re: Hi - testing

 

ok
--
att.
Jo?o


Re: Hi - testing

 

Done.

Jim


Re: Hi - testing

 

Ok


Re: Hi - testing

Matteo Panella
 

Done.

--
M.


Re: Hi - testing

 

Hi Mike lest see if this works


Re: Hi - testing

 

ok


Re: Hi - testing

Robert Schreiber
 

开云体育

I received it.

On 10/18/2019 4:14 PM, Dave Wade wrote:

Hi Mike lest see if this works






Re: Hi - testing

 

Test to group.


BREXX/370 V2R2M0 Production Announcement

 

Howdy, dear MVS-lovers,
?
Today I would like to inform you that we have finally released BREXX/370 V2R2M0.?
At this point, we would like to thank?
?
Juergen, Greg, Jason, Wally, Daniel and Moshe for their support.
?
The installation archive can be downloaded using the following link:
?
?
Of course, we would be happy about any feedback and?
ideas for the next version(s).
?
Mike


Re: Hi - testing

 

done


Done

 

Done


Re: Hi - testing

 

Done


Re: Hi - testing

 

OK


Re: Hi - testing

 

Well, hi everyone.


Re: Hi - testing

 

Here


Re: Hi - testing

 

On Tue, 29 Oct 2019, at 22:25, Neil Thompson wrote:
Here
Me too.

--
Jeremy Nicoll - my opinions are my own.


Insert mode in x3270

 

I'm using TK4- on Linux, with x3270 as the terminal emulator.

When I press the "Insert" key to go into insert mode, it almost never works (it may have worked 3 times for me in total). In all other cases, the x3270 terminal displays X in the bottom, and then hangs until I press "Reset".

Is there a way to fix this? Not being able to insert text can be quite frustrating after a while.


Re: Insert mode in x3270

 

please try?(x3270 -model 3279-2-E -once 127.0.0.1:3270&) on linux command line.

regards;

Rahim
??



On Thursday, November 7, 2019, 8:22:42 AM CST, Elias M?rtenson <elias@...> wrote:


I'm using TK4- on Linux, with x3270 as the terminal emulator.

When I press the "Insert" key to go into insert mode, it almost never works (it may have worked 3 times for me in total). In all other cases, the x3270 terminal displays X in the bottom, and then hangs until I press "Reset".

Is there a way to fix this? Not being able to insert text can be quite frustrating after a while.