Changeset 14608
- Timestamp:
- 01/22/14 14:37:36 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/LispThread.java
r14579 r14608 655 655 } 656 656 public LispObject getParts() { 657 658 659 660 661 662 657 Cons result = new Cons(NIL); 658 return result 659 .push(new Symbol("INITIAL-SEGMENT-SIZE")) 660 .push(LispInteger.getInstance(LispThread.INITIAL_SEGMENT_SIZE)) 661 .push(new Symbol("SEGMENT-SIZE")) 662 .push(LispInteger.getInstance(LispThread.SEGMENT_SIZE)).nreverse(); 663 663 } 664 664 } … … 1180 1180 private static final Primitive THREAD_ALIVE_P = 1181 1181 new Primitive("thread-alive-p", PACKAGE_THREADS, true, "thread", 1182 1182 "Boolean predicate whether THREAD is alive.") 1183 1183 { 1184 1184 @Override … … 1318 1318 private static final Primitive INTERRUPT_THREAD = 1319 1319 new Primitive("interrupt-thread", PACKAGE_THREADS, true, 1320 1321 1320 "thread function &rest args", 1321 "Interrupts THREAD and forces it to apply FUNCTION to ARGS.\nWhen the function returns, the thread's original computation continues. If multiple interrupts are queued for a thread, they are all run, but the order is not guaranteed.") 1322 1322 { 1323 1323 @Override
Note: See TracChangeset
for help on using the changeset viewer.