summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawknHkJJRE0K7_G4sG3YgOkAaihnw0eg9Ao <Chad@web>2014-12-03 01:02:47 +0000
committerGravatar admin <admin@branchable.com>2014-12-03 01:02:47 +0000
commit493f46f8744b68b0ce554887fa5b654051c8c905 (patch)
treeecb886a7de645f1a72b9596069a9e8586bca2122
parent3e98dc6aa82dc6302fc57ec94d211f4f7cf32569 (diff)
Added a comment
-rw-r--r--doc/forum/possible_gpg_issue/comment_5_a98e1e932b3c9156bd116dd1f78f41a5._comment18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/forum/possible_gpg_issue/comment_5_a98e1e932b3c9156bd116dd1f78f41a5._comment b/doc/forum/possible_gpg_issue/comment_5_a98e1e932b3c9156bd116dd1f78f41a5._comment
new file mode 100644
index 000000000..fbb4dd8e4
--- /dev/null
+++ b/doc/forum/possible_gpg_issue/comment_5_a98e1e932b3c9156bd116dd1f78f41a5._comment
@@ -0,0 +1,18 @@
+[[!comment format=mdwn
+ username="https://www.google.com/accounts/o8/id?id=AItOawknHkJJRE0K7_G4sG3YgOkAaihnw0eg9Ao"
+ nickname="Chad"
+ subject="comment 5"
+ date="2014-12-03T01:02:47Z"
+ content="""
+Yeah, it's close returning the error. As far as I can tell the calls involving that file are:
+
+open(path, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK, 0666) = fh
+fstat(fh, {st_mode=S_IFREG|0755, st_size=sz, ...}) = 0
+ftruncate(fh, 0) = 0
+ioctl(fh, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, ptr) = -1 ENOTTY (Inappropriate ioctl for device)
+write(fh, data, len) x 60
+close(fh) = -1 EHOSTDOWN (Host is down)
+
+All the calls to write appear to succeed, followed by the call to close that fails. Maybe the previously failed ioctl command has something to do with it? I guess as was mentioned previously, there may be an operation the device doesn't support, but the weird thing is this used to work fine.
+
+"""]]