View Single Post
  #8   (View Single Post)  
Old 27th December 2015
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,984
Default

I built ntpd (since that was your first core file) with debugging symbols, and ran gdb against your core file, hoping for a match. If this is correct, the failure is in line 262 of ntpd.c:
Code:
if ((nfds = poll(pfd, i, timeout)) == -1)
This is the syscall poll(2).

Last edited by jggimi; 27th December 2015 at 12:21 AM. Reason: typos
Reply With Quote