Issue 402 in xmonad: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile.

Status: New Owner: ---- New issue 402 by 6181989: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 What steps will reproduce the problem? 1. No idea. Each time time it's with relatively few windows open (chromium with ~10 tabs and ~4 instances of urxvt). Nothing too heavy. Seems to be random at this point. What is the expected output? What do you see instead? I expect it to...well, no lock up. But it freezes up and none of the keybindings in haskell.hs work (can't even recompile). I can't change workspaces or window focus, but the currently focused window still has its (non-monad related) bindings and functionality work fine (chromium, screen w/ urxvt) and I can still ctrl+alt+F1 to console. Mouse still works, but it doesn't change focus on the windows. What version of the product are you using? On what operating system? Arch x86_64 with kernel 2.6.34-ARCH and xmonad 0.9.1 Are you using an xmonad.hs? Please attach it and the output of "xmonad --recompile". No --recompile output. See attached for xmonad.hs. Please provide any additional information below. It's done it twice in the less than 24 hours I've had it installed. ivanm @ #xmonad has confirmed this problem also. (see logs for 30/07/10 19:31) Attachments: xmonad.hs 4.8 KB

Comment #1 on issue 402 by 6181989: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Thats 19:31 PDT by the way.

Comment #2 on issue 402 by ivan.miljenovic: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 To make it easier, here are the relevant parts of the logs: <nharris> Does anyone ever have issues where the keys don't respond in xmonad? <nharris> well <nharris> xmonad doesn't respond at all <nharris> but the last window with focus does <nharris> (chromium in this case) <nharris> I can't change workspaces or windows <nharris> or reload for that matter <nharris> bleh <nharris> I'm filing a bug report <nharris> I can't find anything existing that matches that <ivanm> I've had that before <ivanm> could never work out what happened <ivanm> luckily, the window that was focussed was xchat, so I could use /exec to kill the current instance of xmonad and start it again <nharris> huh <nharris> I have to go to tty1 and ^C it <nharris> well in any case, I'm about to post the report, brb <nharris> how often does it happen btw? <ivanm> nharris: I've had it happen maybe 2 or 3 times in what, 3 years?

Comment #3 on issue 402 by 6181989: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Is there anything I can do to pinpoint the problem when it's frozen? It's locked up now and I'd like to do what I can to get this worked out.

Comment #4 on issue 402 by allbery.b: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Try to find out what it's frozen on: attach to it with gdb or a tracer and see what system call it's blocked in. (I'd bet it's stuck writing to xmobar, which will have choked for some reason.) Linux: strace recent Mac OS X and Solaris: dtruss older Solaris: truss *BSD and older Mac OS X: ktrace

Comment #5 on issue 402 by 6181989: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 OK so after running 'strace -p <xmonad pid>' I get the following: select(5, [], [4], NULL, {134, 217727} and after a minute or so this gets added to the same line: ) = 0 (Timeout)

Comment #6 on issue 402 by liskni.si: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 That looks exactly like being stuck on writing to xmobar.

Comment #7 on issue 402 by daniel.wagner: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Can you confirm that xmobar actually runs? (Have you got it installed? Is it in your path? Does it appear when xmonad starts?)

Comment #8 on issue 402 by 6181989: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Daniel.wagner: yes, yes, and yes. I'm away from my computer but would you like to see .xmobarrc when I get back to it?

Comment #9 on issue 402 by 6181989: Xmonad becomes unresponsive. No focus
changing (using keys or mouse), workspace changing or recompile.
http://code.google.com/p/xmonad/issues/detail?id=402
Config { font = "xft:DejaVu Sans
Mono:pixelsize=10:antialias=true:hinting=true"
, bgColor = "#2b2b2b"
, fgColor = "#00e0ff"
, position = Top
, lowerOnStart = True
, commands = [ Run Network "eth0"
["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Network "wlan0"
["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Cpu
["-L","3","-H","50","--normal","green","--high","red"] 10
, Run Memory ["-t","Mem: <usedratio>%"] 10
, Run Swap [] 10
, Run Com "uname" ["-s","-r"] "" 36000
, Run Date "[ %d-%m // %H:%M ]" "date" 10
]
, sepChar = "%"
, alignSep = "}{"
, template = "}{

Comment #10 on issue 402 by daniel.wagner: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Yeah, okay, your pipe to xmobar is filling up. You have two choices. One is to use the StdinReader add-on or module or whatever they call it for xmobar (adding it both to the list of commands *and* to the template). The other is to change your xmonad config to use spawn instead of spawnPipe and take xmobar out of your log hook. It would look something like this: main = do xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig { terminal = "urxvt", modMask = mod4Mask, borderWidth = myBorderWidth, workspaces = ["1", "2", "3", "4", "5", "6", "7", "8", "9"], normalBorderColor = "#00e0ff", focusedBorderColor = "#f92672", manageHook = myManageHook, keys = myKeys, mouseBindings = myMouseBindings, layoutHook = myLayout, startupHook = spawn "xmobar" } See also http://haskell.org/haskellwiki/Xmonad/Frequently_asked_questions#XMonad_is_f...

Comment #11 on issue 402 by ostro...@gmail.com: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 Havin the same issue without xmobar..

Comment #12 on issue 402 by daniel.w...@gmail.com: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 ostronom, if xmobar (or dzen or some similar consumer) is not running, but you have a log hook, then you are almost certainly filling up a pipe. Get rid of your log hook if you know how, or attach your config here and we can help you do that.

Comment #13 on issue 402 by ostro...@gmail.com: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 I'm very sorry. There was a filled up pipe, but deep in modules.

Comment #14 on issue 402 by slyons...@gmail.com: Xmonad becomes
unresponsive. No focus changing (using keys or mouse), workspace changing
or recompile.
http://code.google.com/p/xmonad/issues/detail?id=402
Hello,
I am experiencing the same problem. I would be very thankful if someone
could help me fix my config. Thank You.
Config { font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*"
, bgColor = "black"
, fgColor = "grey"
, position = Top
, lowerOnStart = False
, commands = [ Run Weather "EGPF" ["-t","
<tempF>F","-L","64","-H","77","--normal","green","--high","red","--low","lightblue"]
36000
, Run Cpu
["-L","3","-H","50","--normal","green","--high","red"] 10
, Run Memory ["-t","Mem: <usedratio>%"] 10
, Run Swap [] 10
, Run Date "%a %b %_d %l:%M" "date" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% }{ %cpu% | %memory% * %swap%

Comment #15 on issue 402 by daniel.w...@gmail.com: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 slyons511, You will also need to show us your xmonad config.

Comment #16 on issue 402 by abhixecu...@gmail.com: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 I am also experiencing this problem. Here is the link to my xmonad.hs file: http://pastebin.com/UpFa1xpy Thanks in advance and sorry for digging up an old thread ! -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings

Comment #17 on issue 402 by daniel.w...@gmail.com: Xmonad becomes unresponsive. No focus changing (using keys or mouse), workspace changing or recompile. http://code.google.com/p/xmonad/issues/detail?id=402 abhixecutor (and future visitors to this bug report), we need to see both xmonad.hs and the configuration files for whatever bar you are running (e.g. .xmobarrc). The bug reported here arises when two processes aren't agreeing about how to communicate, so showing just one or the other process's configuration is not enough. -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings
participants (1)
-
codesite-noreply@google.com