change python config, add jupyter and ein

This commit is contained in:
2024-05-05 20:36:39 +02:00
parent b18d02d8d5
commit 8b80ceda39
168 changed files with 177127 additions and 46 deletions

15
lisp/zmq/src/poll.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef __POLL_H__
#define __POLL_H__
#include "core.h"
EZMQ_FUN(ezmq_poll, emacs_value, emacs_value);
EZMQ_FUN(ezmq_poller_new, void);
EZMQ_FUN(ezmq_poller_add, emacs_value, emacs_value, emacs_value);
EZMQ_FUN(ezmq_poller_modify, emacs_value, emacs_value, emacs_value);
EZMQ_FUN(ezmq_poller_remove, emacs_value, emacs_value);
EZMQ_FUN(ezmq_poller_wait, emacs_value, emacs_value);
EZMQ_FUN(ezmq_poller_wait_all, emacs_value, emacs_value, emacs_value);
EZMQ_FUN(ezmq_poller_destroy, emacs_value);
#endif /* __POLL_H__ */