filglob.cxx (2f86921c) filglob.cxx (75e4cd29)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 354 unchanged lines hidden (view full) ---

363 case FileBase::E_AGAIN:
364 // Operation would block
365 ioErrorCode = IOErrorCode_LOCKING_VIOLATION;
366 break;
367 case FileBase::E_NOLCK: // No record locks available
368 ioErrorCode = IOErrorCode_LOCKING_VIOLATION;
369 break;
370
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 354 unchanged lines hidden (view full) ---

363 case FileBase::E_AGAIN:
364 // Operation would block
365 ioErrorCode = IOErrorCode_LOCKING_VIOLATION;
366 break;
367 case FileBase::E_NOLCK: // No record locks available
368 ioErrorCode = IOErrorCode_LOCKING_VIOLATION;
369 break;
370
371 case FileBase::E_LOCKED: // file is locked by another user
372 ioErrorCode = IOErrorCode_LOCKING_VIOLATION;
373 break;
374
371 case FileBase::E_FAULT: // Bad address
372 case FileBase::E_LOOP: // Too many symbolic links encountered
373 case FileBase::E_NOSPC: // No space left on device
374 case FileBase::E_INTR: // function call was interrupted
375 case FileBase::E_IO: // I/O error
376 case FileBase::E_MULTIHOP: // Multihop attempted
377 case FileBase::E_NOLINK: // Link has been severed
378 default:

--- 572 unchanged lines hidden ---
375 case FileBase::E_FAULT: // Bad address
376 case FileBase::E_LOOP: // Too many symbolic links encountered
377 case FileBase::E_NOSPC: // No space left on device
378 case FileBase::E_INTR: // function call was interrupted
379 case FileBase::E_IO: // I/O error
380 case FileBase::E_MULTIHOP: // Multihop attempted
381 case FileBase::E_NOLINK: // Link has been severed
382 default:

--- 572 unchanged lines hidden ---