Current-Users archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: Something's wrong with accept()
> On Apr 2, 2025, at 15:38, B Harder <brad.harder%gmail.com@localhost> wrote:
>
>
>
>> On Apr 2, 2025, at 12:07, Adam <adam%netbsd.org@localhost> wrote:
>>
>> On the recent -current [1], something is wrong with accept(). This Python script fails:
>>
>> ```
>> import socket
>>
>> socket_path = "/tmp/my_unix_socket"
>> server = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
>> server.bind(socket_path)
>> server.listen(5)
>> connection, client_address = server.accept()
>> ```
>>
>> with "OSError: [Errno 14] Bad address".
>>
>> Now it is not possible to build Firefox, because its Python script goes into an infinite loop, and ktrace shows calls to 'paccept'.
>>
>
> I first noticed this yesterday - Taylor did some paccept work *after* (I think) that I'm testing now.
I just refreshed src and built a kernel (and userland) and this issue did not come up.
-bch
>
> -bch
>
>> Please, help.
>> Adam
>>
>>
>>
>> [1] I've built one today. My previous build was about a week old and the problem didn't occur.
Home |
Main Index |
Thread Index |
Old Index