Revision feb9a9b202c12289150de45473846f4272aac1bd authored by Junio C Hamano on 14 February 2019, 02:18:42 UTC, committed by Junio C Hamano on 14 February 2019, 02:18:42 UTC
Test improvement.

* sg/stress-test:
  test-lib: fix non-portable pattern bracket expressions
  test-lib: make '--stress' more bisect-friendly
2 parent s 29825a8 + 7d661e5
Raw File
bulk-checkin.h
/*
 * Copyright (c) 2011, Google Inc.
 */
#ifndef BULK_CHECKIN_H
#define BULK_CHECKIN_H

#include "cache.h"

extern int index_bulk_checkin(struct object_id *oid,
			      int fd, size_t size, enum object_type type,
			      const char *path, unsigned flags);

extern void plug_bulk_checkin(void);
extern void unplug_bulk_checkin(void);

#endif
back to top