Author Commit Message Commit Date Quincey Koziol 20a8edb7057 Add note about H5DOappend() optimization. 05 Jun 2020 Quincey Koziol eaad884f033 Eliminate unneccesary creation of DXPL 02 Jun 2020 Larry Knox 83385326ef1 M Merge pull request #2600 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_12 to hdf5_1_12
* commit '06dc9c40e7cc0e094f245ceee996e72c0e9ff5b2':
Update MANIFEST for removal of older warnings files. 20 May 2020 Larry Knox 06dc9c40e7c Update MANIFEST for removal of older warnings files. 20 May 2020 Larry Knox d35b1416c43 M Merge pull request #2593 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_12 to hdf5_1_12
* commit '1a9316668131ab84d99a557789bdef9763de5ed2':
Revise gnu-*flags and cmake/HDF*CompilerFlags.cmake files to add warning flags for GCC compilers version 4.8 and above. Removed files from gnu-warnings that only apply to versions < 4.8. Consolidated warnings from versions < 4.8 that apply to versions >= 4.8 into the 4.8 warnings files. 19 May 2020 Larry Knox 1a931666813 Revise gnu-*flags and cmake/HDF*CompilerFlags.cmake files to add warning
flags for GCC compilers version 4.8 and above.
Removed files from gnu-warnings that only apply to versions < 4.8.
Consolidated warnings from versions < 4.8 that apply to versions >= 4.8
into the 4.8 warnings files. 18 May 2020 Allen Byrne 6b9363e29ed M Merge pull request #2583 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_12 to hdf5_1_12
* commit '84c3e50cc7f936fe4b892c3c0f7377d6a075422f':
Correct mingw paths
Correct mingw path 16 May 2020 Allen Byrne 84c3e50cc7f Correct mingw paths 15 May 2020 Allen Byrne 0b7e8fde248 Correct mingw path 15 May 2020 Allen Byrne e21e5e0f2a4 M Merge pull request #2572 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_12 to hdf5_1_12
* commit '3e628120ceee554636eda775269b4f0ca914c140':
Whitespace changes
Whitespace updates
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup
Whitespace cleanup compared to develop
Whitespace cleanup compared to develop 13 May 2020 Allen Byrne 3e628120cee Whitespace changes 13 May 2020 Allen Byrne 2c78a1930b1 Whitespace updates 13 May 2020 Allen Byrne 5ba81f88a3d Whitespace cleanup 13 May 2020 Allen Byrne c1db3c97c6d Whitespace cleanup 13 May 2020 Allen Byrne 9f1d06c7f15 Whitespace cleanup 12 May 2020 Allen Byrne 8fc4f67be4d Whitespace cleanup 12 May 2020 Allen Byrne 2a3d394f7c1 Whitespace cleanup 12 May 2020 Allen Byrne fc2370bc090 Whitespace cleanup 12 May 2020 Allen Byrne 415647d63a0 Whitespace cleanup 12 May 2020 Allen Byrne 5b441f84c9a Whitespace cleanup 12 May 2020 Allen Byrne bf5dde71cbe M Merging in latest from upstream (HDFFV/hdf5:refs/heads/hdf5_1_12)
* commit 'e399be1e9156840aa0664323dfc00a93ac43575c':
Complete the comment on thread_main(), explaining why the barrier is used.
The first implementation seemed to allow for the possibility that a thread could block at the barrier, wake and exit the barrier, re-acquire the barrier lock and increase `nentered` before the other blocked threads woke and checked `nentered % count == 0`. Then the other blocked threads would che... 12 May 2020 Larry Knox e399be1e915 M Merge pull request #2575 in HDFFV/hdf5 from ~DYOUNG/werror:fix-thread_id-1_12 to hdf5_1_12
* commit 'f0485413e02ebf1117e5b1725f32534e7e26b622':
Complete the comment on thread_main(), explaining why the barrier is used.
The first implementation seemed to allow for the possibility that a thread could block at the barrier, wake and exit the barrier, re-acquire the barrier lock and increase `nentered` before the other blocked threads woke and checked `nentered % count == 0`. Then the other ... 12 May 2020 David Young f0485413e02 Complete the comment on thread_main(), explaining why the barrier is used. 27 Feb 2020 David Young c149f4ca16d The first implementation seemed to allow for the possibility that a thread
could block at the barrier, wake and exit the barrier, re-acquire the barrier
lock and increase `nentered` before the other blocked threads woke and checked
`nentered % count == 0`. Then the other blocked threads would check `nentered
% count == 0` and, finding it false, go back to sleep in the barrier. This new
implementation waits for a looser condition to obtain so that threads don't go
back to sleep in the barrier. 27 Feb 2020 David Young e5f459d86d7 Test the right condition for the EBUSY return in pthread_barrier_destroy(). 27 Feb 2020 David Young 99034ad9ad4 s/exit_failure/EXIT_FAILURE/g 27 Feb 2020 David Young 4d6c96bdf57 Implement pthread_barrier(3) for Darwin using a counter, condition variable,
and mutex. Untested. 26 Feb 2020 David Young 0952346c795 Use HD prefix. 12 Feb 2020 David Young d7412b7e88f Provide local copies of err(3)- and errx(3)-alike functions
for Visual Studio compatibility. 07 Feb 2020 David Young efca0c7f564 Oops, the test has to return success in the unimplemented case. 06 Feb 2020 David Young c0fa07fd9fc src/H5Eint.c: #include H5TSprivate.h for H5TS_thread_id() definitions.
test/thread_id.c: move threads_failure() inside #ifdefs. 03 Feb 2020 David Young c97981da362 Remove tongue-in-cheek credit for Rusty Shackleford and Dale Alvin Gribble.
Delete the comment questioning whether pthread_mutex_lock is allowed
in a key destructor, since pthread_key_create(3) provides the answer:
There is no notion of a destructor-safe function. If an application
does not call pthread_exit() from a signal handler, or if it blocks any
signal whose handler may call pthread_exit() while calling async-unsafe
functions, all functions may be safely called from d... 10 Feb 2020 David Young d64afcd9d0e Follow HDF5 conventions. 07 Feb 2020 David Young 2ba97e40cdb Make sure that H5TS_thread_id() is available as either a function or a macro in
all configurations.
Previously it was neither declared nor defined in --disable-threadsafety
builds. The compiler's warning got lost in the noise---I first saw the issue
because my -Werror branch stopped compiling cold---and the tests still linked
and ran. 07 Feb 2020 David Young 8aa74137dd7 Use a naked pthread_self() call in the HDF5 thread wrappers. 05 Feb 2020 David Young a7dd25be55a If H5_HAVE_THREADSAFE is not #defined, define nothing but a stub implementation
of H5TS_thread_id(). 05 Feb 2020 Allen Byrne dc9774a6424 Whitespace cleanup compared to develop 09 May 2020 Allen Byrne 6b9f11d7a65 Whitespace cleanup compared to develop 09 May 2020 Allen Byrne 7c7bab5884b M Merge pull request #2569 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_12 to hdf5_1_12
* commit 'ce7ee643c6fe9eecdf02ee9efbd77b2e9aea6e2d':
disable pr action and enable fail fast
Correct filename
OESS-65 Fix packaging 08 May 2020 Allen Byrne ce7ee643c6f disable pr action and enable fail fast 08 May 2020 Allen Byrne 2c892178f1e M Merging in latest from upstream (HDFFV/hdf5:refs/heads/hdf5_1_12)
* commit '943129f61000899e394b75405723a3f110a21205':
Add note to release notes.
Change thread IDs to uint64_t from unsigned long, per Quincey's suggestion.
Add thread_id.c to the MANIFEST and the CMakeLists.txt per Allen's request.
Replace pthread_self_ulong() with H5TS_thread_id(). The POSIX Threads implementation ought to be portable to any system that has POSIX Threads. On Windows, I use the same API call as befor... 08 May 2020 Quincey Koziol 943129f6100 M Merge pull request #2567 in HDFFV/hdf5 from alloc_0sized_dset_fix_1_12 to hdf5_1_12
* commit '8dc9001a21cc3101059335a394e1f0bb7e3c3867':
Add note to release notes.
Change thread IDs to uint64_t from unsigned long, per Quincey's suggestion.
Add thread_id.c to the MANIFEST and the CMakeLists.txt per Allen's request.
Replace pthread_self_ulong() with H5TS_thread_id(). The POSIX Threads implementation ought to be portable to any system that has POSIX Threads. On Windows, I use the same... 08 May 2020 Quincey Koziol 8dc9001a21c Add note to release notes. 07 May 2020 Quincey Koziol e93bae7be21 M Merge branch 'hdf5_1_12' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into hdf5_1_12 07 May 2020 David Young 524af38af88 Change thread IDs to uint64_t from unsigned long, per Quincey's suggestion.
Fix a typo in the H5TS_thread_init() comment and reword some ID
properties. 03 Feb 2020 David Young bb3e1a5cafd Add thread_id.c to the MANIFEST and the CMakeLists.txt per Allen's
request. 03 Feb 2020 David Young 763d7a778e7 Replace pthread_self_ulong() with H5TS_thread_id(). The POSIX Threads
implementation ought to be portable to any system that has POSIX
Threads. On Windows, I use the same API call as before. 03 Feb 2020 Quincey Koziol 25f30e7d63a M Merge branch 'hdf5_1_12' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into hdf5_1_12 06 May 2020 Quincey Koziol f8545c459be Align contents of CMake and autotools testfile cleanup lists. 02 May 2020 Quincey Koziol 2edc8daa16f Avoid allocating a chunk index for datasets with 0-sized dimensions, until
the dataset is extended. 01 May 2020 ← Prev Next → require('plugin/commitgraph/network').applyCommits([{id: '20a8edb705773e6c44d67b952a3dec0a5e0d2c09', href: '/users/dyoung/repos/vchoi_fork/commits/20a8edb705773e6c44d67b952a3dec0a5e0d2c09',parents: [{ id: 'eaad884f033b56f698cdf886f0f719ff6a87b09d' }]},{id: 'eaad884f033b56f698cdf886f0f719ff6a87b09d', href: '/users/dyoung/repos/vchoi_fork/commits/eaad884f033b56f698cdf886f0f719ff6a87b09d',parents: [{ id: '83385326ef1588167f2b37300313a6e51e51ffca' }]},{id: '83385326ef1588167f2b37300313a6e51e51ffca', href: '/users/dyoung/repos/vchoi_fork/commits/83385326ef1588167f2b37300313a6e51e51ffca',parents: [{ id: 'd35b1416c432c5a55fcf495dfa45264dc85ef6a0' },{ id: '06dc9c40e7cc0e094f245ceee996e72c0e9ff5b2' }]},{id: '06dc9c40e7cc0e094f245ceee996e72c0e9ff5b2', href: '/users/dyoung/repos/vchoi_fork/commits/06dc9c40e7cc0e094f245ceee996e72c0e9ff5b2',parents: [{ id: 'd35b1416c432c5a55fcf495dfa45264dc85ef6a0' }]},{id: 'd35b1416c432c5a55fcf495dfa45264dc85ef6a0', href: '/users/dyoung/repos/vchoi_fork/commits/d35b1416c432c5a55fcf495dfa45264dc85ef6a0',parents: [{ id: '6b9363e29ed507ef4876b4694666b40989a4496c' },{ id: '1a9316668131ab84d99a557789bdef9763de5ed2' }]},{id: '1a9316668131ab84d99a557789bdef9763de5ed2', href: '/users/dyoung/repos/vchoi_fork/commits/1a9316668131ab84d99a557789bdef9763de5ed2',parents: [{ id: '6b9363e29ed507ef4876b4694666b40989a4496c' }]},{id: '6b9363e29ed507ef4876b4694666b40989a4496c', href: '/users/dyoung/repos/vchoi_fork/commits/6b9363e29ed507ef4876b4694666b40989a4496c',parents: [{ id: 'e21e5e0f2a43259b535c73d1b05d816fe4d9206e' },{ id: '84c3e50cc7f936fe4b892c3c0f7377d6a075422f' }]},{id: '84c3e50cc7f936fe4b892c3c0f7377d6a075422f', href: '/users/dyoung/repos/vchoi_fork/commits/84c3e50cc7f936fe4b892c3c0f7377d6a075422f',parents: [{ id: '0b7e8fde2487dfd7da58225b95c451952cda0ab4' }]},{id: '0b7e8fde2487dfd7da58225b95c451952cda0ab4', href: '/users/dyoung/repos/vchoi_fork/commits/0b7e8fde2487dfd7da58225b95c451952cda0ab4',parents: [{ id: 'e21e5e0f2a43259b535c73d1b05d816fe4d9206e' }]},{id: 'e21e5e0f2a43259b535c73d1b05d816fe4d9206e', href: '/users/dyoung/repos/vchoi_fork/commits/e21e5e0f2a43259b535c73d1b05d816fe4d9206e',parents: [{ id: 'e399be1e9156840aa0664323dfc00a93ac43575c' },{ id: '3e628120ceee554636eda775269b4f0ca914c140' }]},{id: '3e628120ceee554636eda775269b4f0ca914c140', href: '/users/dyoung/repos/vchoi_fork/commits/3e628120ceee554636eda775269b4f0ca914c140',parents: [{ id: '2c78a1930b11ef10aa92d3cdeb8486d2ede1b33b' }]},{id: '2c78a1930b11ef10aa92d3cdeb8486d2ede1b33b', href: '/users/dyoung/repos/vchoi_fork/commits/2c78a1930b11ef10aa92d3cdeb8486d2ede1b33b',parents: [{ id: '5ba81f88a3d4c1b6228d2647cbef434c813aef5b' }]},{id: '5ba81f88a3d4c1b6228d2647cbef434c813aef5b', href: '/users/dyoung/repos/vchoi_fork/commits/5ba81f88a3d4c1b6228d2647cbef434c813aef5b',parents: [{ id: 'c1db3c97c6d00efadc1240c71eedb57cce423fe5' }]},{id: 'c1db3c97c6d00efadc1240c71eedb57cce423fe5', href: '/users/dyoung/repos/vchoi_fork/commits/c1db3c97c6d00efadc1240c71eedb57cce423fe5',parents: [{ id: '9f1d06c7f150d3ad34e24dc0055f493d2210fe91' }]},{id: '9f1d06c7f150d3ad34e24dc0055f493d2210fe91', href: '/users/dyoung/repos/vchoi_fork/commits/9f1d06c7f150d3ad34e24dc0055f493d2210fe91',parents: [{ id: '8fc4f67be4d66018b4dca4b352672a47e4717f44' }]},{id: '8fc4f67be4d66018b4dca4b352672a47e4717f44', href: '/users/dyoung/repos/vchoi_fork/commits/8fc4f67be4d66018b4dca4b352672a47e4717f44',parents: [{ id: '2a3d394f7c1522b71ee54847c71560c7e8e1af52' }]},{id: '2a3d394f7c1522b71ee54847c71560c7e8e1af52', href: '/users/dyoung/repos/vchoi_fork/commits/2a3d394f7c1522b71ee54847c71560c7e8e1af52',parents: [{ id: 'fc2370bc090530bff1197ae278d418e84cca6c46' }]},{id: 'fc2370bc090530bff1197ae278d418e84cca6c46', href: '/users/dyoung/repos/vchoi_fork/commits/fc2370bc090530bff1197ae278d418e84cca6c46',parents: [{ id: '415647d63a0783a566402d98baad2b65677ab812' }]},{id: '415647d63a0783a566402d98baad2b65677ab812', href: '/users/dyoung/repos/vchoi_fork/commits/415647d63a0783a566402d98baad2b65677ab812',parents: [{ id: '5b441f84c9a09d216a018c34eb488c241db0a060' }]},{id: '5b441f84c9a09d216a018c34eb488c241db0a060', href: '/users/dyoung/repos/vchoi_fork/commits/5b441f84c9a09d216a018c34eb488c241db0a060',parents: [{ id: 'bf5dde71cbebd94fd7a6f12fc4048a0648f41c5b' }]},{id: 'bf5dde71cbebd94fd7a6f12fc4048a0648f41c5b', href: '/users/dyoung/repos/vchoi_fork/commits/bf5dde71cbebd94fd7a6f12fc4048a0648f41c5b',parents: [{ id: 'dc9774a6424eea7323771d84c2bf86fcca7f1ea8' },{ id: 'e399be1e9156840aa0664323dfc00a93ac43575c' }]},{id: 'e399be1e9156840aa0664323dfc00a93ac43575c', href: '/users/dyoung/repos/vchoi_fork/commits/e399be1e9156840aa0664323dfc00a93ac43575c',parents: [{ id: '7c7bab5884bf2a827fb6ec24de610bbde6be3922' },{ id: 'f0485413e02ebf1117e5b1725f32534e7e26b622' }]},{id: 'f0485413e02ebf1117e5b1725f32534e7e26b622', href: '/users/dyoung/repos/vchoi_fork/commits/f0485413e02ebf1117e5b1725f32534e7e26b622',parents: [{ id: 'c149f4ca16db6ae9538490041f3145d50585e65b' }]},{id: 'c149f4ca16db6ae9538490041f3145d50585e65b', href: '/users/dyoung/repos/vchoi_fork/commits/c149f4ca16db6ae9538490041f3145d50585e65b',parents: [{ id: 'e5f459d86d7f566fb57c324305c7cb365ac5ad08' }]},{id: 'e5f459d86d7f566fb57c324305c7cb365ac5ad08', href: '/users/dyoung/repos/vchoi_fork/commits/e5f459d86d7f566fb57c324305c7cb365ac5ad08',parents: [{ id: '99034ad9ad405a57f606817cb7083e809915a28c' }]},{id: '99034ad9ad405a57f606817cb7083e809915a28c', href: '/users/dyoung/repos/vchoi_fork/commits/99034ad9ad405a57f606817cb7083e809915a28c',parents: [{ id: '4d6c96bdf572ed931560d5a525e133a246beea31' }]},{id: '4d6c96bdf572ed931560d5a525e133a246beea31', href: '/users/dyoung/repos/vchoi_fork/commits/4d6c96bdf572ed931560d5a525e133a246beea31',parents: [{ id: '0952346c795508371c52240568957d1d5343318d' }]},{id: '0952346c795508371c52240568957d1d5343318d', href: '/users/dyoung/repos/vchoi_fork/commits/0952346c795508371c52240568957d1d5343318d',parents: [{ id: 'd7412b7e88f02ea6784ba5ba97568137ab38c6a6' }]},{id: 'd7412b7e88f02ea6784ba5ba97568137ab38c6a6', href: '/users/dyoung/repos/vchoi_fork/commits/d7412b7e88f02ea6784ba5ba97568137ab38c6a6',parents: [{ id: 'efca0c7f5644b4bb6bcb13b9f869087db8a78c83' }]},{id: 'efca0c7f5644b4bb6bcb13b9f869087db8a78c83', href: '/users/dyoung/repos/vchoi_fork/commits/efca0c7f5644b4bb6bcb13b9f869087db8a78c83',parents: [{ id: 'c0fa07fd9fc1c4b0aab116c6c278142384a440b9' }]},{id: 'c0fa07fd9fc1c4b0aab116c6c278142384a440b9', href: '/users/dyoung/repos/vchoi_fork/commits/c0fa07fd9fc1c4b0aab116c6c278142384a440b9',parents: [{ id: 'c97981da3620cff7f789516dd9dff5ffde86d6d8' }]},{id: 'c97981da3620cff7f789516dd9dff5ffde86d6d8', href: '/users/dyoung/repos/vchoi_fork/commits/c97981da3620cff7f789516dd9dff5ffde86d6d8',parents: [{ id: 'd64afcd9d0ea3be06bb4fefd2d4c1ebd291fef84' }]},{id: 'd64afcd9d0ea3be06bb4fefd2d4c1ebd291fef84', href: '/users/dyoung/repos/vchoi_fork/commits/d64afcd9d0ea3be06bb4fefd2d4c1ebd291fef84',parents: [{ id: '2ba97e40cdb0950be7ea4858607e42118d9dce3e' }]},{id: '2ba97e40cdb0950be7ea4858607e42118d9dce3e', href: '/users/dyoung/repos/vchoi_fork/commits/2ba97e40cdb0950be7ea4858607e42118d9dce3e',parents: [{ id: '8aa74137dd79f07ac2fecafbd7dbcc8e1b537af2' }]},{id: '8aa74137dd79f07ac2fecafbd7dbcc8e1b537af2', href: '/users/dyoung/repos/vchoi_fork/commits/8aa74137dd79f07ac2fecafbd7dbcc8e1b537af2',parents: [{ id: 'a7dd25be55a2f0e2e528cc9b1e320b0293821425' }]},{id: 'a7dd25be55a2f0e2e528cc9b1e320b0293821425', href: '/users/dyoung/repos/vchoi_fork/commits/a7dd25be55a2f0e2e528cc9b1e320b0293821425',parents: [{ id: '7c7bab5884bf2a827fb6ec24de610bbde6be3922' }]},{id: 'dc9774a6424eea7323771d84c2bf86fcca7f1ea8', href: '/users/dyoung/repos/vchoi_fork/commits/dc9774a6424eea7323771d84c2bf86fcca7f1ea8',parents: [{ id: '6b9f11d7a656504226632c59b42b6b2f7ec52453' }]},{id: '6b9f11d7a656504226632c59b42b6b2f7ec52453', href: '/users/dyoung/repos/vchoi_fork/commits/6b9f11d7a656504226632c59b42b6b2f7ec52453',parents: [{ id: '7c7bab5884bf2a827fb6ec24de610bbde6be3922' }]},{id: '7c7bab5884bf2a827fb6ec24de610bbde6be3922', href: '/users/dyoung/repos/vchoi_fork/commits/7c7bab5884bf2a827fb6ec24de610bbde6be3922',parents: [{ id: '943129f61000899e394b75405723a3f110a21205' },{ id: 'ce7ee643c6fe9eecdf02ee9efbd77b2e9aea6e2d' }]},{id: 'ce7ee643c6fe9eecdf02ee9efbd77b2e9aea6e2d', href: '/users/dyoung/repos/vchoi_fork/commits/ce7ee643c6fe9eecdf02ee9efbd77b2e9aea6e2d',parents: [{ id: '2c892178f1e1a08a8548b969417f6a50659a324a' }]},{id: '2c892178f1e1a08a8548b969417f6a50659a324a', href: '/users/dyoung/repos/vchoi_fork/commits/2c892178f1e1a08a8548b969417f6a50659a324a',parents: [{ id: '8f58213e3914ca8d2e7133ef0719d6476783478b' },{ id: '943129f61000899e394b75405723a3f110a21205' }]},{id: '943129f61000899e394b75405723a3f110a21205', href: '/users/dyoung/repos/vchoi_fork/commits/943129f61000899e394b75405723a3f110a21205',parents: [{ id: 'e76c191daab49dcb4d5fb5d826023f50fb9f0e0c' },{ id: '8dc9001a21cc3101059335a394e1f0bb7e3c3867' }]},{id: '8dc9001a21cc3101059335a394e1f0bb7e3c3867', href: '/users/dyoung/repos/vchoi_fork/commits/8dc9001a21cc3101059335a394e1f0bb7e3c3867',parents: [{ id: 'e93bae7be211b6cfb827161915c789daa7279f1c' }]},{id: 'e93bae7be211b6cfb827161915c789daa7279f1c', href: '/users/dyoung/repos/vchoi_fork/commits/e93bae7be211b6cfb827161915c789daa7279f1c',parents: [{ id: '524af38af8877957308832dbe346aa84c7dea356' },{ id: 'e76c191daab49dcb4d5fb5d826023f50fb9f0e0c' }]},{id: '524af38af8877957308832dbe346aa84c7dea356', href: '/users/dyoung/repos/vchoi_fork/commits/524af38af8877957308832dbe346aa84c7dea356',parents: [{ id: 'bb3e1a5cafd0c35358e341836b758ea3b747f495' }]},{id: 'bb3e1a5cafd0c35358e341836b758ea3b747f495', href: '/users/dyoung/repos/vchoi_fork/commits/bb3e1a5cafd0c35358e341836b758ea3b747f495',parents: [{ id: '763d7a778e7b08a0f6bffcd6c471dbcd02147141' }]},{id: '763d7a778e7b08a0f6bffcd6c471dbcd02147141', href: '/users/dyoung/repos/vchoi_fork/commits/763d7a778e7b08a0f6bffcd6c471dbcd02147141',parents: [{ id: '25f30e7d63ac3c567b38233a2d4b6d3472754754' }]},{id: '25f30e7d63ac3c567b38233a2d4b6d3472754754', href: '/users/dyoung/repos/vchoi_fork/commits/25f30e7d63ac3c567b38233a2d4b6d3472754754',parents: [{ id: 'f8545c459befc3b4cbb0def4e122acf0ba41fb4a' },{ id: 'f0ed3478a9033f1a76aadc9967f561e6e7801584' }]},{id: 'f8545c459befc3b4cbb0def4e122acf0ba41fb4a', href: '/users/dyoung/repos/vchoi_fork/commits/f8545c459befc3b4cbb0def4e122acf0ba41fb4a',parents: [{ id: '2edc8daa16f32d1f6ebe1edf8d415a9a58ba6288' }]},{id: '2edc8daa16f32d1f6ebe1edf8d415a9a58ba6288', href: '/users/dyoung/repos/vchoi_fork/commits/2edc8daa16f32d1f6ebe1edf8d415a9a58ba6288',parents: [{ id: '286d296aa7ab3085903ad677b3fd3f25e216c84d' }]}]);