Code Monkey home page Code Monkey logo

Comments (2)

jh46 avatar jh46 commented on August 24, 2024 1

The problem seems to be that in build_display() "display" is passed as C int to XDefaultRootWindow(). On platforms where pointers don't fit to C int that just doesn't work.

Here is a patch to fix the problem:

--- ./mouse/_nixmouse.py.orig	2018-05-18 14:12:49.039934827 +0300
+++ ./mouse/_nixmouse.py	2018-05-25 15:49:15.298608794 +0300
@@ -7,7 +7,10 @@
 
 import ctypes
 import ctypes.util
-from ctypes import c_uint32, c_uint, c_int, byref
+from ctypes import c_uint32, c_uint, c_int, c_void_p, byref
+
+class c_ptr(c_void_p):
+    pass
 
 display = None
 window = None
@@ -16,12 +19,11 @@
     global display, window, x11
     if display and window and x11: return
     x11 = ctypes.cdll.LoadLibrary(ctypes.util.find_library('X11'))
+    x11.XOpenDisplay.restype = c_ptr
     # Required because we will have multiple threads calling x11,
     # such as the listener thread and then main using "move_to".
     x11.XInitThreads()
     display = x11.XOpenDisplay(None)
-    # Known to cause segfault in Fedora 23 64bits, no known workarounds.
-    # http://stackoverflow.com/questions/35137007/get-mouse-position-on-linux-pure-python
     window = x11.XDefaultRootWindow(display)
 
 def get_position():

from mouse.

boppreh avatar boppreh commented on August 24, 2024

Sorry, the Linux part has seen little love recently. I'm just finishing some major changes to keyboard and Linux crashes will be the next top priority.

Thank you for the report.

from mouse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.