Opened 15 years ago
Closed 15 years ago
#142 closed defect (fixed)
Problem compiing LOGAND
| Reported by: | Mark Evenson | Owned by: | ehuelsmann |
|---|---|---|---|
| Priority: | major | Milestone: | 0.26 |
| Component: | compiler | Version: | 0.24 |
| Keywords: | Cc: | ||
| Parent Tickets: |
Description
From binghe's problems compiling SNMP there is a problem compiling our LOGAND form.
Change History (4)
comment:1 Changed 15 years ago by
| Milestone: | → 0.26 |
|---|---|
| Version: | → 0.24 |
comment:2 Changed 15 years ago by
Further factoring the away from any dependencies other than base ABCL:
(logand (let ((lock (threads:make-mutex))) (threads:with-mutex (lock) 42)) 4294967295)
comment:4 Changed 15 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
r13257 addresses the problem with LOGAND.
SNMP now compiles and loads.
Note: See
TracTickets for help on using
tickets.
This snippet
(in-package :snmp) (lambda () (LOGAND (PORTABLE-THREADS:ATOMIC-INCF SNMP::REQUEST-ID-COUNTER) 4294967295))has the same error message which is a bit weird as I would have thought that the undefined "REQUEST-ID-COUNTER" variable would get detected first, but that seems to not be the case.