Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- H390-MVS
- Messages
Search
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
Robert Schreiber
toggle quoted message
Show quoted text
Hi Mike lest see if this works |
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 |
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. |
to navigate to use esc to dismiss