Open ghost opened 2 years ago
Hi @pidloop. Thanks for your report.
Which board (or boards) do you have selected in the Arduino IDE when this issue occurs?
Does the issue occur when you are editing a specific sketch (or sketches), or does it occur even with the basic sketch you get from File > New?
Hi, thanks for getting back.
Adafruit Feather HUZZAH ES8266
Just my sketch. If I open File -> New; select the same board; close my sketch window; then the CPU goes back down to near zero (once the indexing is finished).
Hmm, I just noticed something. With my sketch open and CPU is pegged, if I minimize my sketch's window (macOS yellow window button) then the CPU also goes down to zero. As soon as I open it back up then CPU pegs again. This is entirely repeatable. Some sort of GUI issue perhaps?
BTW: my sketch is pretty complex: 68 files, 170 KLOC. I started it five years ago -- you can see it here https://clearskyinstitute.com/ham/HamClock.
On Wed, Sep 21, 2022 at 7:21 PM per1234 @.***> wrote:
Hi @pidloop https://github.com/pidloop. Thanks for your report.
Which board (or boards) do you have selected in the Arduino IDE when this issue occurs?
Does the issue occur when you are editing a specific sketch (or sketches), or does it occur even with the basic sketch you get from File > New?
— Reply to this email directly, view it on GitHub https://github.com/arduino/arduino-ide/issues/1482#issuecomment-1254430610, or unsubscribe https://github.com/notifications/unsubscribe-auth/AC37YZDFE5V47AUN4ZPPW4TV7O7BTANCNFSM6AAAAAAQSOKHGQ . You are receiving this because you were mentioned.Message ID: @.***>
Very cool project!
I tested it on my Windows machine (I don't have a macOS machine) and was not able to reproduce the problem. The CPU usage is very high during the language server processing (which is associated with the "indexing" status sometimes shown at the left side of the status bar) after opening the sketch, but that CPU usage doesn't change if I minimize the window and it also does subside after approximately 1 minute when the processing finishes.
I'm going to request you to provide some additional information that will allow us to identify which specific process is using the CPU. I'll suggest two alternative options. You can pick whichever one of the two is more convenient for you (some people prefer a GUI, others a command line):
Please provide a screenshot of the "Activity Monitor" window with all of the relevant processes visible:
Paste or attach the screenshot in a comment here. Please note that you must come to the GitHub issue web page to make an attachment:
https://github.com/arduino/arduino-ide/issues/1482
Attachments made via email replies are discarded by GitHub.
Please provide the output from the top
command in a comment here:
top -l 3
I see there is one process using all the CPU:
PID COMMAND %CPU TIME #TH #WQ #PORTS MEM PURG CMPRS PGRP PPID STATE BOOSTS %CPU_ME %CPU_OTHRS UID FAULTS COW MSGSENT MSGRECV SYSBSD SYSMACH CSW PAGEINS IDLEW POWER INSTRS CYCLES USER #MREGS RPRVT VPRVT VSIZE KPRVT KSHRD
56405 Arduino IDE Help 99.5 02:16.11 22/1 1 218 555M+ 0B 0B 56393 56393 running *0[1] 0.00000 0.00000 503 353556+ 1817 46032+ 30535+ 115208+ 182088+ 155122+ 0 1005+ 99.9 10588127980 4567264198 ecdowney N/A N/A N/A N/A N/A N/A
I would also like to get the full command line of this specific process from you. You can get that by running the top
command again to determine the PID of the process, shown under the "PID" column of the table (it was 56405
in this case), then running a ps
command for that PID:
ps -p <PID>
(e.g., ps -p 56405
)
Please post the output of that command here.
output of ps axuwww | grep 8579
ecdowney 8579 100.6 2.7 74205524 895740 ?? R 12:47PM 1:53.47 /Applications/Arduino IDE 3.app/Contents/Frameworks/Arduino IDE Helper (Renderer).app/Contents/MacOS/Arduino IDE Helper (Renderer) --type=renderer --user-data-dir=/Users/ecdowney/Library/Application Support/arduino-ide --app-path=/Applications/Arduino IDE 3.app/Contents/Resources/app --no-sandbox --no-zygote --field-trial-handle=1718379636,7398052868659905054,1965251737215176558,131072 --disable-features=SpareRendererForSitePerProcess --lang=en-US --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --renderer-client-id=4 --no-v8-untrusted-code-mitigations --shared-files
Describe the problem
cpu is always 100% on macOS
To reproduce
just start the program, don't have to do anything
Expected behavior
would expect cpu to be very low if I'm not doing anything
Arduino IDE version
2.0.0
Operating system
macOS
Operating system version
Monterey 12.5.1
Additional context
1.8.16 doesn't do this.
Issue checklist