> On 25 Nov 2021, at 22:29, jenk...@tutanota.com wrote:
>
> Thanks very much for your reply.
>
> I am now getting a single event returned in Python, but it's not the right
> event, as I'll explain below.
>
> I rearranged the Python code based on your comments:
>
> #!/usr/bin/python3
> impo
Thanks very much for your reply.
I am now getting a single event returned in Python, but it's not the right
event, as I'll explain below.
I rearranged the Python code based on your comments:
#!/usr/bin/python3
import sys
import os
import select
print("Inside Python")
event_fd = int(sys.arg
> On 24 Nov 2021, at 22:42, Jen via Python-list wrote:
>
> I have a C program that uses fork-execv to run Python 3.10 in a child
> process, and I am using eventfd with epoll for IPC between them. The eventfd
> file descriptor is created in C and passed to Python through execv. Once the
> P
> On 24 Nov 2021, at 23:09, Jen via Python-list wrote:
>
> I have a C program that uses fork-execv to run Python 3.10 in a child
> process, and I am using eventfd with epoll for IPC between them. The eventfd
> file descriptor is created in C and passed to Python through execv. Once the
>
I have a C program that uses fork-execv to run Python 3.10 in a child process,
and I am using eventfd with epoll for IPC between them. The eventfd file
descriptor is created in C and passed to Python through execv. Once the Python
child process starts I print the file descriptor to verify that