BerkeleyDB

Check-in [c4adcaed3e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Replaced use of quotient&remainder by separate calls to avoid numbers dependency
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c4adcaed3e9c1ee8e49a30e604a90a5bd1e8c2f3
User & Date: murphy 2013-07-07 15:27:25.107
Context
2013-11-03
15:08
Correction of test-depends meta tag, thanks to Peter Bex check-in: 4c6f980925 user: murphy tags: trunk
2013-07-07
15:27
Replaced use of quotient&remainder by separate calls to avoid numbers dependency check-in: c4adcaed3e user: murphy tags: trunk
2013-06-07
01:47
Updated release information check-in: 58f4d93802 user: murphy tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to berkeley-db.scm.
512
513
514
515
516
517
518


519
520
521
522
523
524
525
526
527
	     db page-size)))
	 (when heap-max-size
	   (cond-expand
	    (enable-heap
	     (check-error
	      'open-database
	      (call-with-values


		(cut quotient&remainder
		     heap-max-size 1000000000)
		(cut (foreign-lambda*
		      int ((nonnull-database db)
			   (unsigned-long size_q) (unsigned-long size_r)
			   (int flags))
		      "C_return(db->set_heapsize(db, size_q, size_r, flags));")
		     db <> <> 0))))
	    (else







>
>
|
|







512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
	     db page-size)))
	 (when heap-max-size
	   (cond-expand
	    (enable-heap
	     (check-error
	      'open-database
	      (call-with-values
		(lambda ()
		  (values
		   (quotient heap-max-size 1000000000)
		   (remainder heap-max-size 1000000000)))
		(cut (foreign-lambda*
		      int ((nonnull-database db)
			   (unsigned-long size_q) (unsigned-long size_r)
			   (int flags))
		      "C_return(db->set_heapsize(db, size_q, size_r, flags));")
		     db <> <> 0))))
	    (else